forked from m2mtech/flysystem-stream-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.77 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
{
"name": "m2mtech/flysystem-stream-wrapper",
"type": "library",
"description": "A stream wrapper for Flysystem V2 & V3.",
"keywords": [
"flysystem",
"streamwrapper",
"stream-wrapper"
],
"homepage": "https://github.com/m2mtech/flysystem-stream-wrapper",
"license": "MIT",
"authors": [
{
"name": "Martin Mandl",
"email": "[email protected]",
"homepage": "https://cms.m2m.at",
"role": "Developer"
}
],
"require": {
"php": "^7.2 || ^8.0",
"league/flysystem": "^2.3|^3.0",
"symfony/lock": "^5.3|^6.0"
},
"replace": {
"twistor/flysystem-stream-wrapper": "v1.0.9"
},
"require-dev": {
"ext-intl": "*",
"ext-pcntl": "*",
"ext-shmop": "*",
"ext-sysvmsg": "*",
"amphp/amp": "^2.6",
"amphp/parallel": "^v1.4",
"amphp/parallel-functions": "^1.0",
"amphp/sync": "^1.4",
"fakerphp/faker": "^1.19",
"opis/closure": "^3.6",
"phpstan/phpstan": "^1.10",
"phpunit/php-invoker": "^2.0|^3.1|^4.0",
"phpunit/phpunit": "^8.5|^9.6|^10.0",
"symplify/easy-coding-standard": "^11.0"
},
"autoload": {
"psr-4": {
"M2MTech\\FlysystemStreamWrapper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"M2MTech\\FlysystemStreamWrapper\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"check-cs": "vendor/bin/ecs check",
"fix-cs": "vendor/bin/ecs check --fix",
"phpstan": "vendor/bin/phpstan analyse --memory-limit 1G"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}