composer.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "knplabs/gaufrette",
  3. "type": "library",
  4. "description": "PHP5 library that provides a filesystem abstraction layer",
  5. "keywords": ["file", "filesystem", "media", "abstraction"],
  6. "minimum-stability": "dev",
  7. "homepage": "http://knplabs.com",
  8. "license": "MIT",
  9. "authors": [
  10. {
  11. "name": "KnpLabs Team",
  12. "homepage": "http://knplabs.com"
  13. },
  14. {
  15. "name": "The contributors",
  16. "homepage": "http://github.com/knplabs/Gaufrette/contributors"
  17. }
  18. ],
  19. "repositories": [
  20. {
  21. "type": "pear",
  22. "url": "http://pear.php.net"
  23. }
  24. ],
  25. "require": {
  26. "php": ">=5.3.2"
  27. },
  28. "require-dev": {
  29. "aws/aws-sdk-php": "~2",
  30. "amazonwebservices/aws-sdk-for-php": "1.5.*",
  31. "rackspace/php-opencloud" : "1.9.*",
  32. "google/apiclient": "~1.1",
  33. "phpspec/phpspec": "2.0.*",
  34. "phpseclib/phpseclib": "dev-master",
  35. "doctrine/dbal": ">=2.3",
  36. "dropbox-php/dropbox-php": "*",
  37. "herzult/php-ssh": "*",
  38. "phpunit/phpunit": "3.7.*",
  39. "microsoft/windowsazure": "dev-master",
  40. "mikey179/vfsStream": "~1.2.0"
  41. },
  42. "suggest": {
  43. "knplabs/knp-gaufrette-bundle": "to use with Symfony2",
  44. "dropbox-php/dropbox-php": "to use the Dropbox adapter",
  45. "rackspace/php-opencloud" : "to use Opencloud adapter",
  46. "google/apiclient": "to use GoogleCloudStorage adapter",
  47. "herzult/php-ssh": "to use SFtp adapter",
  48. "phpseclib/phpseclib": "to use PhpseclibSftp adapter",
  49. "aws/aws-sdk-php": "to use the Amazon S3 adapter",
  50. "amazonwebservices/aws-sdk-for-php": "to use the legacy Amazon S3 adapters",
  51. "doctrine/dbal": "to use the Doctrine DBAL adapter",
  52. "microsoft/windowsazure": "to use Microsoft Azure Blob Storage adapter",
  53. "ext-zip": "to use the Zip adapter",
  54. "ext-apc": "to use the APC adapter",
  55. "ext-curl": "*",
  56. "ext-mbstring": "*",
  57. "ext-mongo": "*",
  58. "ext-fileinfo": "This extension is used to automatically detect the content-type of a file in the AwsS3, OpenCloud, AzureBlogStorage and GoogleCloudStorage adapters"
  59. },
  60. "autoload": {
  61. "psr-0": { "Gaufrette": "src/" }
  62. },
  63. "extra": {
  64. "branch-alias": {
  65. "dev-master": "0.2.x-dev"
  66. }
  67. },
  68. "config": {
  69. "bin-dir": "bin"
  70. }
  71. }