-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 993 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
31
32
33
34
35
36
37
{
"name": "flextype-plugins/twig",
"type": "project",
"description": "Twig plugin to present Twig template engine for Flextype.",
"keywords": ["twig", "plugin", "flextype", "php", "html"],
"homepage": "https://awilum.github.io/flextype/downloads/extend/plugins/twig",
"license": "MIT",
"authors": [
{
"name": "Sergey Romanenko",
"email": "[email protected]",
"homepage": "https://awilum.github.io"
}
],
"support": {
"issues": "https://github.com/flextype-plugins/twig/issues"
},
"require": {
"php": "^8.1",
"twig/twig": "^3.4.2",
"slim/flash": "~0.4.0"
},
"config": {
"apcu-autoloader": true,
"optimize-autoloader": true,
"platform-check": false,
"sort-packages": true
},
"autoload": {
"classmap": [
"src/twig"
],
"files": [
"src/twig/helpers/helpers.php"
]
}
}