composer.json 653B

123456789101112131415161718192021222324252627
  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/" }
  19. },
  20. "extra": {
  21. "branch-alias": {
  22. "dev-master": "1.0.x-dev"
  23. }
  24. },
  25. "minimum-stability": "dev"
  26. }