blob: c344849d8141c70e317bc88ef2868eff993a3867 [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": {
32 "symfony/phpunit-bridge": "^4.4.9|^5.0.9",
33 "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": {
47 "dev-master": "3.3-dev"
48 }
49 }
50}