composer.json 745 B

123456789101112131415161718192021222324252627282930313233
  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. "topthink/framework": "^6.1|^8.0",
  24. "league/flysystem": "^2.0"
  25. },
  26. "require-dev": {
  27. "mikey179/vfsstream": "^1.6",
  28. "mockery/mockery": "^1.2",
  29. "phpunit/phpunit": "^8.0"
  30. },
  31. "minimum-stability": "dev",
  32. "prefer-stable": true
  33. }