-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
33 lines (33 loc) · 1.12 KB
/
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
{
"name": "oro/twig-inspector",
"description": "Oro Twig Inspector adds the possibility to find twig templates and blocks used for rendering HTML pages faster during development",
"type": "symfony-bundle",
"keywords": ["twig", "debug", "inspect", "template", "ORO", "symfony", "toolbar-extension"],
"homepage": "https://github.com/oroinc/twig-inspector",
"license": "MIT",
"authors": [
{
"name": "Oro, Inc",
"homepage": "http://www.orocrm.com"
}
],
"autoload": {
"psr-4": {"Oro\\TwigInspector\\": ""}
},
"require": {
"php": ">=7.4",
"symfony/config": "^4.4.1 | ^5.0 | ^6.0",
"symfony/dependency-injection": "^4.4.1 | ^5.0 | ^6.0",
"symfony/http-kernel": "^4.4.1 | ^5.0 | ^6.0",
"symfony/http-foundation": "^4.4.1 | ^5.0 | ^6.0",
"symfony/routing": "^4.4.1 | ^5.0 | ^6.0",
"symfony/web-profiler-bundle": "^4.4.1 | ^5.0 | ^6.0",
"twig/twig": "^1.38 | ^2.7 | ^3.0"
},
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}