composer.json 702 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "twig/twig",
  3. "type": "library",
  4. "description": "Twig, the flexible, fast, and secure template language for PHP",
  5. "keywords": ["templating"],
  6. "homepage": "http://twig.sensiolabs.org",
  7. "license": "BSD-3",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Armin Ronacher",
  15. "email": "armin.ronacher@active-4.com"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.2.4"
  20. },
  21. "autoload": {
  22. "psr-0" : {
  23. "Twig_" : "lib/"
  24. }
  25. },
  26. "extra": {
  27. "branch-alias": {
  28. "dev-master": "1.12-dev"
  29. }
  30. }
  31. }