-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.05 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
{
"name": "phossa2/storage",
"license": "MIT",
"type": "library",
"description": "A storage front for local or remote storage system",
"keywords": ["storage", "phossa", "phossa2", "filesystem"],
"homepage": "https://github.com/phossa2/storage",
"authors": [
{
"name": "Hong Zhang",
"homepage": "https://github.com/phossa2"
}
],
"require": {
"php": ">=5.4.0",
"phossa2/shared": "^2.0.23"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"squizlabs/php_codesniffer": "2.*"
},
"autoload": {
"psr-4": { "Phossa2\\Storage\\": "src/Storage/" }
},
"scripts": {
"test": "phpunit",
"check": "phpcs --standard=psr2 src/",
"format": "phpcbf --standard=psr2 src/"
},
"config": {
"platform": {
"php": "5.4.0"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"archive": {
"exclude": [ "!vendor", "tests", "composer.lock" ]
}
}