forked from djboris88/twig-commented-include
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 829 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 829 Bytes
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
{
"name": "djboris88/twig-commented-include",
"description": "Twig extension which outputs HTML comments before and after the `include` tag",
"keywords": ["twig", "html", "comments", "debug"],
"homepage": "https://github.com/djboris88/twig-include-comments",
"license": "GPL-3.0",
"authors": [
{
"name": "Boris Đemrovski",
"email": "djboris88@gmail.com",
"role": "developer"
}
],
"autoload": {
"psr-4": {
"Djboris88\\Twig\\": "src/"
}
},
"require": {
"php": ">=5.6",
"twig/twig": "^2.0|^3.0"
},
"require-dev": {
"symfony/framework-bundle": "^2.7|^3.2",
"symfony/twig-bundle": "^2.7|^3.2"
},
"suggest": {
"symfony/framework-bundle": "The framework bundle to integrate the extension into Symfony",
"symfony/twig-bundle": "The twig bundle to integrate the extension into Symfony"
}
}