-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 910 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": "christianessl/adminpanel_routing",
"type": "typo3-cms-extension",
"description": "Debug Routing information in the adminpanel in TYPO3 9.5+.",
"keywords": [
"TYPO3",
"extension",
"adminpanel",
"routing"
],
"license": ["GPL-2.0-or-later"],
"homepage": "https://christianessl.at",
"authors": [
{
"name": "Christian Essl",
"role": "Developer"
}
],
"version": "0.1.0",
"require": {
"typo3/cms-core": "^9.5.0"
},
"autoload": {
"psr-4": {
"ChristianEssl\\AdminpanelRouting\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"ChristianEssl\\AdminpanelRouting\\Tests\\": "Tests"
}
},
"replace": {
"adminpanel_routing": "self.version",
"typo3-ter/adminpanel_routing": "self.version"
}
}