mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-20 14:36:57 +00:00
6f996fc214
* 3.x: Simplify enum usage in docs Forbid adding Nodes to EmptyNode Add phpstan analysis Fix the intl-extra tests Fix the string-extra tests when running with older symfony/string Fix the exception message to match the expected one for not ready nodes Add missing import Add BC break note in CHANGELOG for 3.15 Fix CHANGELOG Update CHANGELOG Bump version Prepare the 3.15.0 release
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "twig/twig",
|
|
"type": "library",
|
|
"description": "Twig, the flexible, fast, and secure template language for PHP",
|
|
"keywords": ["templating"],
|
|
"homepage": "https://twig.symfony.com",
|
|
"license": "BSD-3-Clause",
|
|
"minimum-stability": "dev",
|
|
"authors": [
|
|
{
|
|
"name": "Fabien Potencier",
|
|
"email": "fabien@symfony.com",
|
|
"homepage": "http://fabien.potencier.org",
|
|
"role": "Lead Developer"
|
|
},
|
|
{
|
|
"name": "Twig Team",
|
|
"role": "Contributors"
|
|
},
|
|
{
|
|
"name": "Armin Ronacher",
|
|
"email": "armin.ronacher@active-4.com",
|
|
"role": "Project Founder"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=8.2",
|
|
"symfony/deprecation-contracts": "^2.5|^3",
|
|
"symfony/polyfill-mbstring": "^1.3",
|
|
"symfony/polyfill-ctype": "^1.8",
|
|
"symfony/polyfill-php81": "^1.29"
|
|
},
|
|
"require-dev": {
|
|
"psr/container": "^1.0|^2.0",
|
|
"phpstan/phpstan": "^2.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4" : {
|
|
"Twig\\" : "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4" : {
|
|
"Twig\\Tests\\" : "tests/"
|
|
}
|
|
}
|
|
}
|