composer.json 431 B

12345678910111213141516171819202122
  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. "autoload": {
  15. "psr-4": {
  16. "think\\": "src"
  17. },
  18. "files": [
  19. "src/helper.php"
  20. ]
  21. }
  22. }