composer.json 571 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "topthink/think-view",
  3. "description": "thinkphp template driver",
  4. "license": "Apache-2.0",
  5. "authors": [
  6. {
  7. "name": "liu21st",
  8. "email": "liu21st@gmail.com"
  9. }
  10. ],
  11. "require": {
  12. "php": ">=7.1.0",
  13. "topthink/think-template": "^2.0"
  14. },
  15. "autoload": {
  16. "psr-4": {
  17. "think\\view\\driver\\": "src"
  18. }
  19. },
  20. "extra": {
  21. "think": {
  22. "config": {
  23. "template": "src/config/template.php"
  24. }
  25. }
  26. }
  27. }