-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
38 lines (38 loc) · 939 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
38
{
"name": "htmlburger/wpemerge-twig",
"description": "Enables the use of Twig views in WP Emerge.",
"keywords": ["wordpress", "framework", "template", "view", "wpemerge"],
"license": "GPL-2.0-only",
"homepage": "https://github.com/htmlburger/wpemerge-twig",
"authors": [
{
"name": "Atanas Angelov",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "htmlBurger",
"email": "[email protected]",
"homepage": "https://htmlburger.com/",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/htmlburger/wpemerge-twig",
"issues": "https://github.com/htmlburger/wpemerge-twig/issues",
"email": "[email protected]"
},
"autoload": {
"psr-4": {
"WPEmergeTwig\\": "src/"
},
"files": [
"config.php"
]
},
"require": {
"php": "^7.0",
"twig/twig": "^2.4",
"htmlburger/wpemerge": "~0.16.0"
}
}