composer.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. "funding": [
  11. {
  12. "type": "other",
  13. "url": "https://offset.earth/frankdejonge"
  14. }
  15. ],
  16. "license": "MIT",
  17. "authors": [
  18. {
  19. "name": "Frank de Jonge",
  20. "email": "info@frenky.net"
  21. }
  22. ],
  23. "require": {
  24. "php": ">=5.5.9",
  25. "ext-fileinfo": "*"
  26. },
  27. "require-dev": {
  28. "phpspec/phpspec": "^3.4",
  29. "phpunit/phpunit": "^5.7.26"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "League\\Flysystem\\": "src/"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "League\\Flysystem\\Stub\\": "stub/"
  39. },
  40. "files": [
  41. "tests/PHPUnitHacks.php"
  42. ]
  43. },
  44. "suggest": {
  45. "ext-fileinfo": "Required for MimeType",
  46. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  47. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  48. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  49. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  50. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  51. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  52. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  53. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications",
  54. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  55. "ext-ftp": "Allows you to use FTP server storage",
  56. "ext-openssl": "Allows you to use FTPS server storage",
  57. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  58. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter"
  59. },
  60. "conflict": {
  61. "league/flysystem-sftp": "<1.0.6"
  62. },
  63. "extra": {
  64. "branch-alias": {
  65. "dev-master": "1.1-dev"
  66. }
  67. },
  68. "scripts": {
  69. "phpstan": "php phpstan.php"
  70. }
  71. }