-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
53 lines (51 loc) · 1.49 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
{
"name": "wshafer/psr11-flysystem",
"type": "library",
"description": "Flysystem Facotories for PSR-11",
"homepage": "https://github.com/wshafer/psr11-flysystem",
"authors": [
{
"name": "Westin Shafer",
"email": "shafer_w2002@yahoo.com",
"homepage": "https://github.com/wshafer"
}
],
"license" : "BSD-2-Clause",
"require": {
"php": "^7.0",
"league/flysystem": "^1.0.40",
"league/flysystem-cached-adapter": "^1.0",
"psr/container": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0.8",
"squizlabs/php_codesniffer": "^2.8.1",
"phpmd/phpmd" : "@stable",
"satooshi/php-coveralls": "^1.0",
"league/flysystem-azure": "^1.0",
"league/flysystem-aws-s3-v3": "^1.0",
"spatie/flysystem-dropbox": "^1.0",
"league/flysystem-memory": "^1.0",
"league/flysystem-sftp": "^1.0",
"league/flysystem-ziparchive": "^1.0",
"predis/predis": "^1.1",
"symfony/dependency-injection": "^3.3"
},
"autoload": {
"psr-4": {
"WShafer\\PSR11FlySystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WShafer\\PSR11FlySystem\\Test\\": "tests/"
}
},
"extra": {
"zf": {
"config-provider": "WShafer\\PSR11FlySystem\\ConfigProvider",
"module": "WShafer\\PSR11FlySystem"
}
},
"abandoned": "blazon/psr11-flysystem"
}