composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "league/flysystem",
  3. "description": "File storage abstraction for PHP",
  4. "keywords": [
  5. "filesystem", "filesystems", "files", "storage", "aws",
  6. "s3", "ftp", "sftp", "webdav", "file", "cloud"
  7. ],
  8. "scripts": {
  9. "phpstan": "vendor/bin/phpstan analyse -l 6 src"
  10. },
  11. "type": "library",
  12. "minimum-stability": "dev",
  13. "prefer-stable": true,
  14. "autoload": {
  15. "psr-4": {
  16. "League\\Flysystem\\": "src"
  17. }
  18. },
  19. "require": {
  20. "php": "^8.0.2",
  21. "league/mime-type-detection": "^1.0.0"
  22. },
  23. "require-dev": {
  24. "ext-zip": "*",
  25. "ext-fileinfo": "*",
  26. "ext-ftp": "*",
  27. "microsoft/azure-storage-blob": "^1.1",
  28. "phpunit/phpunit": "^9.5.11",
  29. "phpstan/phpstan": "^0.12.26",
  30. "phpseclib/phpseclib": "^3.0.14",
  31. "aws/aws-sdk-php": "^3.220.0",
  32. "composer/semver": "^3.0",
  33. "friendsofphp/php-cs-fixer": "^3.5",
  34. "google/cloud-storage": "^1.23",
  35. "async-aws/s3": "^1.5",
  36. "async-aws/simple-s3": "^1.1",
  37. "sabre/dav": "^4.3.1"
  38. },
  39. "conflict": {
  40. "symfony/http-client": "<5.2",
  41. "guzzlehttp/ringphp": "<1.1.1",
  42. "guzzlehttp/guzzle": "<7.0",
  43. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  44. "phpseclib/phpseclib": "3.0.15"
  45. },
  46. "license": "MIT",
  47. "authors": [
  48. {
  49. "name": "Frank de Jonge",
  50. "email": "info@frankdejonge.nl"
  51. }
  52. ]
  53. }