blob: 33e46405c932f1bc5e3121e8ab02045f1c19fffc [file] [log] [blame]
Matthias Andreas Benkard12a57352021-12-28 18:02:04 +01001{
2 "name": "twig/twig",
3 "type": "library",
4 "description": "Twig, the flexible, fast, and secure template language for PHP",
5 "keywords": ["templating"],
6 "homepage": "https://twig.symfony.com",
7 "license": "BSD-3-Clause",
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 "name": "Twig Team",
18 "role": "Contributors"
19 },
20 {
21 "name": "Armin Ronacher",
22 "email": "armin.ronacher@active-4.com",
23 "role": "Project Founder"
24 }
25 ],
26 "require": {
27 "php": ">=7.2.5",
28 "symfony/polyfill-mbstring": "^1.3",
29 "symfony/polyfill-ctype": "^1.8"
30 },
31 "require-dev": {
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010032 "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
Matthias Andreas Benkard12a57352021-12-28 18:02:04 +010033 "psr/container": "^1.0"
34 },
35 "autoload": {
36 "psr-4" : {
37 "Twig\\" : "src/"
38 }
39 },
40 "autoload-dev": {
41 "psr-4" : {
42 "Twig\\Tests\\" : "tests/"
43 }
44 },
45 "extra": {
46 "branch-alias": {
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010047 "dev-master": "3.4-dev"
Matthias Andreas Benkard12a57352021-12-28 18:02:04 +010048 }
49 }
50}