Files
Twig/extra/html-extra/composer.json
T
Fabien Potencier 7f75a23f85 minor #3230 Fix constraints (fabpot)
This PR was merged into the 2.x branch.

Discussion
----------

Fix constraints

Commits
-------

966fa451 Fix constraints
2019-12-27 08:37:45 +01:00

40 lines
921 B
JSON

{
"name": "twig/html-extra",
"type": "library",
"description": "A Twig extension for HTML",
"keywords": ["twig", "html"],
"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.1.3",
"symfony/mime": "^4.3|^5.0",
"twig/twig": "^2.4|^3.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4|^5.0"
},
"autoload": {
"psr-4" : {
"Twig\\Extra\\Html\\" : "src/"
}
},
"autoload-dev": {
"psr-4" : {
"Twig\\Extra\\Html\\Tests\\" : "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.12-dev"
}
}
}