composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "yiisoft/yii2-twig",
  3. "description": "The Twig integration for the Yii framework",
  4. "keywords": ["yii2", "twig", "renderer"],
  5. "type": "yii2-extension",
  6. "license": "BSD-3-Clause",
  7. "support": {
  8. "issues": "https://github.com/yiisoft/yii2-twig/issues",
  9. "forum": "http://www.yiiframework.com/forum/",
  10. "wiki": "http://www.yiiframework.com/wiki/",
  11. "irc": "irc://irc.freenode.net/yii",
  12. "source": "https://github.com/yiisoft/yii2-twig"
  13. },
  14. "authors": [
  15. {
  16. "name": "Alexander Makarov",
  17. "email": "sam@rmcreative.ru"
  18. }
  19. ],
  20. "require": {
  21. "yiisoft/yii2": "~2.0.4",
  22. "twig/twig": "~2.0"
  23. },
  24. "repositories": [
  25. {
  26. "type": "composer",
  27. "url": "https://asset-packagist.org"
  28. }
  29. ],
  30. "autoload": {
  31. "psr-4": { "yii\\twig\\": "src/" }
  32. },
  33. "autoload-dev": {
  34. "psr-4": { "yiiunit\\twig\\": "tests/" }
  35. },
  36. "extra": {
  37. "branch-alias": {
  38. "dev-master": "2.0.x-dev"
  39. }
  40. }
  41. }