-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 1.79 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "moderntribe/flysystem-stream-wrapper",
"description": "A PHP Stream Wrapper for Flysystem",
"type": "library",
"keywords": [
"moderntribe",
"flysystem",
"streamwrapper",
"stream-wrapper"
],
"authors": [
{
"name": "Justin Frydman",
"role": "Developer"
},
{
"name": "Modern Tribe",
"email": "[email protected]",
"homepage": "https://tri.be"
}
],
"require": {
"php": ">=7.4",
"league/flysystem": "^1.0",
"symfony/lock": "^5.2",
"guzzlehttp/psr7": "^1.5",
"jhofm/flysystem-iterator": "^2.2"
},
"require-dev": {
"ext-exif": "*",
"league/flysystem-aws-s3-v3": "^1.0",
"phpunit/phpunit": "^9",
"php-mock/php-mock-mockery": "^1.3",
"moderntribe/coding-standards": "^2.0"
},
"autoload": {
"psr-4": {
"Tribe\\Storage\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tribe\\Storage\\Tests\\": "tests"
},
"files": [
"tests/Bootstrap.php"
]
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.4.0"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cweagans/composer-patches": true
}
},
"scripts": {
"up": "docker compose --project-directory docker up -d --force-recreate",
"down": "docker compose --project-directory docker down --remove-orphans",
"shell": "docker exec -it flysystem-wrapper-tests /bin/bash",
"test": [
"@up",
"docker exec -it -w /application/www flysystem-wrapper-tests /usr/local/bin/php /application/www/vendor/bin/phpunit"
],
"test-ci": [
"docker exec -i -w /application/www flysystem-wrapper-tests /usr/local/bin/php /application/www/vendor/bin/phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}