composer.json 629B

12345678910111213141516171819202122232425262728
  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. "version": "1.6.0",
  8. "license": "BSD",
  9. "authors": [
  10. {
  11. "name": "Fabien Potencier",
  12. "email": "fabien@symfony.com"
  13. },
  14. {
  15. "name": "Armin Ronacher",
  16. "email": "armin.ronacher@active-4.com"
  17. }
  18. ],
  19. "require": {
  20. "php": ">=5.2.4"
  21. },
  22. "autoload": {
  23. "psr-0" : {
  24. "Twig_" : "lib/"
  25. }
  26. }
  27. }