composer.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "league/flysystem",
  3. "description": "Filesystem abstraction: Many filesystems, one API.",
  4. "keywords": [
  5. "filesystem", "filesystems", "files", "storage", "dropbox", "aws",
  6. "abstraction", "s3", "ftp", "sftp", "remote", "webdav",
  7. "file systems", "cloud", "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.5.9",
  18. "ext-fileinfo": "*"
  19. },
  20. "require-dev": {
  21. "phpspec/phpspec": "^3.4",
  22. "phpunit/phpunit": "^5.7.10"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "League\\Flysystem\\": "src/"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "League\\Flysystem\\Stub\\": "stub/"
  32. },
  33. "files": [
  34. "tests/PHPUnitHacks.php"
  35. ]
  36. },
  37. "suggest": {
  38. "ext-fileinfo": "Required for MimeType",
  39. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  40. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  41. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  42. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  43. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  44. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  45. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  46. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications",
  47. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  48. "ext-ftp": "Allows you to use FTP server storage",
  49. "ext-openssl": "Allows you to use FTPS server storage",
  50. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  51. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter"
  52. },
  53. "conflict": {
  54. "league/flysystem-sftp": "<1.0.6"
  55. },
  56. "extra": {
  57. "branch-alias": {
  58. "dev-master": "1.1-dev"
  59. }
  60. },
  61. "scripts": {
  62. "phpstan": "php phpstan.php"
  63. }
  64. }