composer.json 720 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "topthink/think-helper",
  3. "description": "The ThinkPHP6 Helper Package",
  4. "license": "Apache-2.0",
  5. "authors": [
  6. {
  7. "name": "yunwuxin",
  8. "email": "448901948@qq.com"
  9. }
  10. ],
  11. "require": {
  12. "php": ">=7.1.0"
  13. },
  14. "require-dev": {
  15. "phpunit/phpunit": "^9.5"
  16. },
  17. "autoload": {
  18. "psr-4": {
  19. "think\\": "src"
  20. },
  21. "files": [
  22. "src/helper.php"
  23. ]
  24. },
  25. "autoload-dev": {
  26. "psr-4": {
  27. "Tests\\": "tests"
  28. }
  29. },
  30. "scripts": {
  31. "test": "./vendor/bin/phpunit --colors"
  32. },
  33. "scripts-descriptions": {
  34. "test": "Run all tests."
  35. }
  36. }