-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 894 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": "patrick-maynard/twig-stack-trace-dumper",
"type": "library",
"description": "A Twig extension that allows the user to get a stack trace from within a template",
"keywords": ["twig", "html", "stack trace", "dump"],
"homepage": "http://home.patrickmaynard.com",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Patrick Maynard",
"email": "[email protected]",
"homepage": "http://home.patrickmaynard.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"twig/twig": "*"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
},
"autoload": {
"psr-4" : { "PatrickMaynard\\TwigExtensions\\Trace\\" : "" },
"exclude-from-classmap": [
"/Tests/"
]
}
}