composer.json 461 B

1234567891011121314151617181920212223
  1. {
  2. "name": "thinkcmf/think-template",
  3. "description": "the php template engine",
  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. "psr/simple-cache": "^1.0"
  14. },
  15. "autoload": {
  16. "psr-4": {
  17. "think\\": "src"
  18. },
  19. "classmap": [
  20. "src/View.php"
  21. ]
  22. }
  23. }