composer.json 752 B

12345678910111213141516171819202122232425262728293031323334
  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. "require": {
  12. "php": "^8.0",
  13. "topthink/framework": "^6.0 || ^8.0",
  14. "ergebnis/classy": "^1.4"
  15. },
  16. "require-dev": {
  17. "topthink/think-ide-helper": "^1.0"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "think\\annotation\\": "src"
  22. }
  23. },
  24. "extra": {
  25. "think": {
  26. "services": [
  27. "think\\annotation\\Service"
  28. ],
  29. "config": {
  30. "annotation": "src/config.php"
  31. }
  32. }
  33. }
  34. }