composer.json 726 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "topthink/think-annotation",
  3. "description": "Annotation For ThinkPHP6",
  4. "license": "Apache-2.0",
  5. "authors": [
  6. {
  7. "name": "yunwuxin",
  8. "email": "448901948@qq.com"
  9. }
  10. ],
  11. "minimum-stability": "dev",
  12. "require": {
  13. "topthink/framework": "^6.0",
  14. "doctrine/annotations": "^1.6",
  15. "php-di/phpdoc-reader": "^2.1"
  16. },
  17. "autoload": {
  18. "psr-4": {
  19. "think\\annotation\\": "src"
  20. }
  21. },
  22. "extra": {
  23. "think": {
  24. "services": [
  25. "think\\annotation\\Service"
  26. ],
  27. "config": {
  28. "annotation": "src/config.php"
  29. }
  30. }
  31. }
  32. }