Files
Twig/extra/string-extra/composer.json
T
Fabien Potencier 966fa45126 Fix constraints
2019-12-27 08:33:44 +01:00

40 lines
955 B
JSON

{
"name": "twig/string-extra",
"type": "library",
"description": "A Twig extension for Symfony String",
"keywords": ["twig", "html", "string", "unicode"],
"homepage": "https://twig.symfony.com",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com",
"homepage": "http://fabien.potencier.org",
"role": "Lead Developer"
}
],
"require": {
"php": "^7.2.9",
"symfony/string": "^5.0",
"twig/twig": "^2.4|^3.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4|^5.0"
},
"autoload": {
"psr-4" : {
"Twig\\Extra\\String\\" : "src/"
}
},
"autoload-dev": {
"psr-4" : {
"Twig\\Extra\\String\\Tests\\" : "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.12-dev"
}
}
}