-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1 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
{
"name": "gaufrette/extras",
"description": "Provides extra features (prefixed fs, resolvable fs) to Gaufrette",
"type": "library",
"require": {
"knplabs/gaufrette": "~0.4"
},
"require-dev": {
"phpspec/phpspec": "^3.4",
"phpunit/phpunit": "~5.5",
"aws/aws-sdk-php": "~2.4|~3"
},
"license": "MIT",
"authors": [
{
"name": "Albin Kerouanton",
"email": "[email protected]"
},
{
"name": "KnpLabs Team",
"homepage": "http://knplabs.com"
},
{
"name": "The contributors",
"homepage": "http://github.com/Gaufrette/extras/contributors"
}
],
"minimum-stability": "stable",
"config": {
"bin-dir": "bin/"
},
"autoload": {
"psr-4": {
"Gaufrette\\Extras\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gaufrette\\Extras\\Tests\\": "tests/"
}
}
}