1{
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.1.3",
28        "symfony/polyfill-mbstring": "^1.3",
29        "symfony/polyfill-ctype": "^1.8",
30        "symfony/polyfill-php72": "^1.8"
31    },
32    "require-dev": {
33        "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
34        "psr/container": "^1.0"
35    },
36    "autoload": {
37        "psr-0" : {
38            "Twig_" : "lib/"
39        },
40        "psr-4" : {
41            "Twig\\" : "src/"
42        }
43    },
44    "autoload-dev": {
45        "psr-4" : {
46            "Twig\\Tests\\" : "tests/"
47        }
48    },
49    "extra": {
50        "branch-alias": {
51            "dev-master": "2.14-dev"
52        }
53    }
54}
55