composer.json 974 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "twig/string-extra",
  3. "type": "library",
  4. "description": "A Twig extension for Symfony String",
  5. "keywords": ["twig", "html", "string", "unicode"],
  6. "homepage": "https://twig.symfony.com",
  7. "license": "MIT",
  8. "minimum-stability": "dev",
  9. "authors": [
  10. {
  11. "name": "Fabien Potencier",
  12. "email": "fabien@symfony.com",
  13. "homepage": "http://fabien.potencier.org",
  14. "role": "Lead Developer"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=7.2.5",
  19. "symfony/string": "^5.0",
  20. "symfony/translation-contracts": "^1.1|^2",
  21. "twig/twig": "^2.4|^3.0"
  22. },
  23. "require-dev": {
  24. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  25. },
  26. "autoload": {
  27. "psr-4" : { "Twig\\Extra\\String\\" : "" },
  28. "exclude-from-classmap": [
  29. "/Tests/"
  30. ]
  31. },
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "3.2-dev"
  35. }
  36. }
  37. }