composer.json 824 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "topthink/think-filesystem",
  3. "description": "The ThinkPHP6.1 Filesystem Package",
  4. "type": "library",
  5. "license": "Apache-2.0",
  6. "authors": [
  7. {
  8. "name": "yunwuxin",
  9. "email": "448901948@qq.com"
  10. }
  11. ],
  12. "autoload": {
  13. "psr-4": {
  14. "think\\": "src"
  15. }
  16. },
  17. "autoload-dev": {
  18. "psr-4": {
  19. "think\\tests\\": "tests/"
  20. }
  21. },
  22. "require": {
  23. "php": ">=7.2.5",
  24. "topthink/framework": "^6.1|^8.0",
  25. "league/flysystem": "^1.1.4",
  26. "league/flysystem-cached-adapter": "^1.0"
  27. },
  28. "require-dev": {
  29. "mikey179/vfsstream": "^1.6",
  30. "mockery/mockery": "^1.2",
  31. "phpunit/phpunit": "^8.0"
  32. },
  33. "minimum-stability": "dev",
  34. "prefer-stable": true
  35. }