-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 769 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 769 Bytes
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
{
"name": "bnet/bnrepos",
"type": "library",
"description": "lazy PHP5 library that provides Repositories as filesystem abstraction layer",
"keywords": ["file", "repository", "filesystem", "media", "abstraction"],
"license": "MIT",
"require": {
"php": ">=5.3.8",
"aws/aws-sdk-php": "~3",
"symfony/yaml": "<2.3",
"herzult/php-ssh": "~1.1",
"knplabs/gaufrette": "~0.1"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"suggest": {
"amazonwebservices/aws-sdk-for-php": "to use the Amazon S3 adapter With the OLD API",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-fileinfo": "*"
},
"autoload": {
"psr-0": { "BNRepo": "src/" }
}
}