composer.json 540B

123456789101112131415161718192021
  1. {
  2. "name": "twig/extensions",
  3. "description": "Common additional features for Twig that do not directly belong in core",
  4. "keywords": ["debug","i18n","text"],
  5. "homepage": "https://github.com/fabpot/Twig-extensions",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. }
  13. ],
  14. "require": {
  15. "twig/twig": "1.*"
  16. },
  17. "autoload": {
  18. "psr-0": { "Twig_Extensions_": "lib/Twig/Extensions" }
  19. }
  20. }