composer.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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": "package",
  22. "package": {
  23. "name": "rackspace/php-cloudfiles",
  24. "version": "master",
  25. "source": {
  26. "url": "git://github.com/rackerlabs/php-cloudfiles.git",
  27. "type": "git",
  28. "reference": "master"
  29. },
  30. "dist": {
  31. "url": "https://github.com/rackerlabs/php-cloudfiles/zipball/master",
  32. "type": "zip"
  33. },
  34. "autoload": {
  35. "files": ["cloudfiles.php"]
  36. }
  37. }
  38. },
  39. {
  40. "type": "pear",
  41. "url": "http://pear.php.net"
  42. }
  43. ],
  44. "require": {
  45. "php": ">=5.3.2"
  46. },
  47. "require-dev": {
  48. "aws/aws-sdk-php": "~2",
  49. "amazonwebservices/aws-sdk-for-php": "1.5.*",
  50. "rackspace/php-opencloud" : "dev-master",
  51. "phpspec/phpspec": "2.0.*",
  52. "phpseclib/phpseclib": "dev-master",
  53. "rackspace/php-cloudfiles": "*",
  54. "doctrine/dbal": ">=2.3",
  55. "dropbox-php/dropbox-php": "*",
  56. "herzult/php-ssh": "*",
  57. "phpunit/phpunit": "3.7.*",
  58. "microsoft/windowsazure": "dev-master"
  59. },
  60. "suggest": {
  61. "knplabs/knp-gaufrette-bundle": "to use with Symfony2",
  62. "dropbox-php/dropbox-php": "to use the Dropbox adapter",
  63. "rackspace/php-opencloud" : "to use Opencloud adapter",
  64. "aws/aws-sdk-php": "to use the Amazon S3 adapter",
  65. "amazonwebservices/aws-sdk-for-php": "to use the legacy Amazon S3 adapters",
  66. "phpseclib/phpseclib": "to use the SFTP",
  67. "doctrine/dbal": "to use the Doctrine DBAL adapter",
  68. "microsoft/windowsazure": "to use Microsoft Azure Blob Storage adapter",
  69. "ext-zip": "to use the Zip adapter",
  70. "ext-apc": "to use the APC adapter",
  71. "ext-curl": "*",
  72. "ext-mbstring": "*",
  73. "ext-mongo": "*",
  74. "ext-fileinfo": "*"
  75. },
  76. "autoload": {
  77. "psr-0": { "Gaufrette": "src/" }
  78. },
  79. "extra": {
  80. "branch-alias": {
  81. "dev-master": "0.2.x-dev"
  82. }
  83. },
  84. "config": {
  85. "bin-dir": "bin"
  86. }
  87. }