-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.28 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.28 KB
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
{
"name": "dspacelabs/filesystem",
"description": "Filesystem abstract for PHP",
"keywords": ["filesystem"],
"license": "MIT",
"homepage": "https://github.com/dSpaceLabs/Filesystem",
"authors": [
{
"name": "Joshua Estes",
"homepage": "http://joshuaestes.me"
}
],
"support": {
"issues": "https://github.com/dSpaceLabs/Filesystem/issues",
"source": "https://github.com/dSpaceLabs/Filesystem",
"docs": "https://github.com/dSpaceLabs/Filesystem",
"irc": "irc://irc.freenode.org/dspacelabs"
},
"require": {
"psr/log": "^1.0",
"dspacelabs/cache": "^0.1@dev"
},
"require-dev": {
"aws/aws-sdk-php": "^3.4",
"mockery/mockery": "~1.0@dev",
"monolog/monolog": "^1.16",
"phpunit/phpunit": "~4.7"
},
"suggest": {
"monolog/monolog": "Pass the logger around as if it was a blunt",
"aws/aws-sdk-php": "Used to the AmazonS3Adapter"
},
"autoload": {
"psr-4": { "Dspacelabs\\Component\\Filesystem\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Dspacelabs\\Component\\Filesystem\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}