forked from KnpLabs/Gaufrette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.46 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "knplabs/gaufrette",
"type": "library",
"description": "PHP5 library that provides a filesystem abstraction layer",
"keywords": ["file", "filesystem", "media", "abstraction"],
"minimum-stability": "dev",
"homepage": "http://knplabs.com",
"license": "MIT",
"authors": [
{
"name": "KnpLabs Team",
"homepage": "http://knplabs.com"
},
{
"name": "The contributors",
"homepage": "http://github.com/knplabs/Gaufrette/contributors"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "rackspace/php-cloudfiles",
"version": "master",
"source": {
"url": "git://github.com/rackerlabs/php-cloudfiles.git",
"type": "git",
"reference": "master"
},
"dist": {
"url": "https://github.com/rackerlabs/php-cloudfiles/zipball/master",
"type": "zip"
},
"autoload": {
"files": ["cloudfiles.php"]
}
}
}
],
"require": {
"php": ">=5.3.2"
},
"require-dev": {
"amazonwebservices/aws-sdk-for-php": "1.5.*",
"rackspace/php-opencloud" : "dev-master",
"phpspec/phpspec": "2.0.*",
"phpseclib/phpseclib": "dev-master",
"rackspace/php-cloudfiles": "*",
"doctrine/dbal": ">=2.3",
"dropbox-php/dropbox-php": "*",
"herzult/php-ssh": "*",
"phpunit/phpunit": "3.7.*"
},
"suggest": {
"knplabs/knp-gaufrette-bundle": "to use with Symfony2",
"dropbox-php/dropbox-php": "to use the Dropbox adapter",
"rackspace/php-opencloud" : "to use Opencloud adapter",
"amazonwebservices/aws-sdk-for-php": "to use the Amazon S3 adapter",
"phpseclib/phpseclib": "to use the SFTP",
"doctrine/dbal": "to use the Doctrine DBAL adapter",
"ext-zip": "to use the Zip adapter",
"ext-apc": "to use the APC adapter",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-mongo": "*",
"ext-fileinfo": "*"
},
"autoload": {
"psr-0": { "Gaufrette": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
},
"config": {
"bin-dir": "bin"
}
}