composer.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "league/flysystem",
  3. "type": "library",
  4. "description": "Filesystem abstraction: Many filesystems, one API.",
  5. "keywords": [
  6. "filesystem", "filesystems", "files", "storage", "dropbox", "aws",
  7. "abstraction", "s3", "ftp", "sftp", "remote", "webdav",
  8. "file systems", "cloud", "cloud files", "rackspace", "copy.com"
  9. ],
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "Frank de Jonge",
  14. "email": "info@frenky.net"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=5.5.9",
  19. "ext-fileinfo": "*"
  20. },
  21. "require-dev": {
  22. "phpspec/phpspec": "^3.4",
  23. "phpunit/phpunit": "^5.7.26"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "League\\Flysystem\\": "src/"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "League\\Flysystem\\Stub\\": "stub/"
  33. },
  34. "files": [
  35. "tests/PHPUnitHacks.php"
  36. ]
  37. },
  38. "suggest": {
  39. "ext-fileinfo": "Required for MimeType",
  40. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  41. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  42. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  43. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  44. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  45. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  46. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  47. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications",
  48. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  49. "ext-ftp": "Allows you to use FTP server storage",
  50. "ext-openssl": "Allows you to use FTPS server storage",
  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. "conflict": {
  55. "league/flysystem-sftp": "<1.0.6"
  56. },
  57. "extra": {
  58. "branch-alias": {
  59. "dev-master": "1.1-dev"
  60. }
  61. },
  62. "scripts": {
  63. "phpstan": "php phpstan.php"
  64. }
  65. }