Nenhuma Descrição

composer.json 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "league/flysystem",
  3. "description": "Many filesystems, one API.",
  4. "keywords": [
  5. "filesystem", "files", "storage", "dropbox", "aws",
  6. "s3", "ftp", "sftp", "remote", "webdav", "file systems", "cloud",
  7. "cloud files", "rackspace", "copy.com"
  8. ],
  9. "license": "MIT",
  10. "authors": [
  11. {
  12. "name": "Frank de Jonge",
  13. "email": "info@frenky.net"
  14. }
  15. ],
  16. "require": {
  17. "php": ">=5.4.0"
  18. },
  19. "require-dev": {
  20. "ext-fileinfo": "*",
  21. "phpunit/phpunit": "~4.1",
  22. "mockery/mockery": "~0.9",
  23. "predis/predis": "~1.0",
  24. "tedivm/stash": "~0.12.0",
  25. "league/phpunit-coverage-listener" : "~1.1",
  26. "phpspec/phpspec": "~2.0.0",
  27. "phpspec/prophecy-phpunit": "~1.0"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "League\\Flysystem\\": "src/"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "League\\Flysystem\\Stub\\": "stub/"
  37. }
  38. },
  39. "suggest": {
  40. "ext-fileinfo": "Required for MimeType",
  41. "predis/predis": "Allows you to use Predis for caching",
  42. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  43. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  44. "league/flysystem-copy": "Allows you to use Copy.com storage",
  45. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  46. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  47. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  48. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  49. "league/flysystem-dropbox": "Allows you to use Dropbox storage",
  50. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  51. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  52. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter"
  53. },
  54. "config": {
  55. "bin-dir": "bin"
  56. },
  57. "extra": {
  58. "branch-alias": {
  59. "dev-master": "1.1-dev"
  60. }
  61. }
  62. }