composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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": "^7.2 || ^8.0",
  21. "ext-json": "*",
  22. "league/mime-type-detection": "^1.0.0"
  23. },
  24. "require-dev": {
  25. "ext-fileinfo": "*",
  26. "ext-ftp": "*",
  27. "phpunit/phpunit": "^8.5 || ^9.4",
  28. "phpstan/phpstan": "^0.12.26",
  29. "phpseclib/phpseclib": "^2.0",
  30. "aws/aws-sdk-php": "^3.132.4",
  31. "composer/semver": "^3.0",
  32. "friendsofphp/php-cs-fixer": "^3.2",
  33. "google/cloud-storage": "^1.23",
  34. "async-aws/s3": "^1.5",
  35. "async-aws/simple-s3": "^1.0",
  36. "sabre/dav": "^4.1"
  37. },
  38. "conflict": {
  39. "guzzlehttp/ringphp": "<1.1.1"
  40. },
  41. "license": "MIT",
  42. "authors": [
  43. {
  44. "name": "Frank de Jonge",
  45. "email": "info@frankdejonge.nl"
  46. }
  47. ]
  48. }