-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
30 lines (30 loc) · 958 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "memio/twig-template-engine",
"license": "MIT",
"type": "library",
"description": "Memio's Twig templates, used to generate PHP code from given Model",
"keywords": ["generator", "PHP", "code", "twig", "templates"],
"homepage": "http://memio.github.io/memio",
"authors": [
{
"name": "Loïc Faugeron",
"email": "faugeron.loic@gmail.com",
"homepage": "http://gnugat.github.io",
"role": "Developer"
}
],
"autoload": { "psr-4": {
"Memio\\TwigTemplateEngine\\": "src/Memio/TwigTemplateEngine",
"Memio\\TwigTemplateEngine\\Config\\": "config"
}},
"require": {
"memio/model": "^3.0",
"memio/pretty-printer": "^3.0",
"php": "^7.2 || ^8.0",
"twig/twig": "^1.18 || ^2.0 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.10",
"phpspec/phpspec": "^6.1 || ^7.0"
}
}