composer.json 600 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "topthink/think-cors",
  3. "description": "The Cors Library For ThinkPHP",
  4. "license": "Apache-2.0",
  5. "authors": [
  6. {
  7. "name": "yunwuxin",
  8. "email": "448901948@qq.com"
  9. }
  10. ],
  11. "require": {
  12. "topthink/framework": "^6.0|^8.0"
  13. },
  14. "autoload": {
  15. "psr-4": {
  16. "think\\cors\\": "src"
  17. }
  18. },
  19. "extra": {
  20. "think": {
  21. "services": [
  22. "think\\cors\\Service"
  23. ],
  24. "config": {
  25. "cors": "src/config.php"
  26. }
  27. }
  28. }
  29. }