composer.json 641 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "topthink/think-angular",
  3. "description": "think angular view engine",
  4. "homepage": "http://kancloud.cn/shuai/php-angular",
  5. "license": "Apache2",
  6. "authors": [
  7. {
  8. "name": "玩具机器人",
  9. "email": "zhaishuaigan@qq.com"
  10. }
  11. ],
  12. "support": {
  13. "issues": "https://github.com/top-think/think-angular/issues"
  14. },
  15. "require": {
  16. "php": ">=5.4.0"
  17. },
  18. "autoload": {
  19. "classmap": {
  20. "think\\view\\driver\\Angular": "drivers/thinkphp5/Angular.php"
  21. },
  22. "psr-4": {
  23. "think\\angular\\": "src/"
  24. }
  25. }
  26. }