-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
36 lines (36 loc) · 898 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
{
"name": "causal/routing",
"description": "Service to route HTTP/REST requests to your own controller/actions.",
"type": "typo3-cms-extension",
"keywords": ["TYPO3 CMS", "REST", "web service", "routing", "HTTP request"],
"homepage": "https://github.com/xperseguers/t3ext-routing",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Xavier Perseguers",
"email": "xavier@causal.ch",
"homepage": "https://www.causal.ch",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Causal\\Routing\\": "Classes/"
}
},
"replace": {
"typo3-ter/routing": "self.version"
},
"require": {
"php": ">= 7.2.0, <= 7.4.99",
"typo3/cms-core": ">= 8.2.0, <= 8.7.99"
},
"support": {
"issues": "https://github.com/xperseguers/t3ext-routing/issues"
},
"extra": {
"typo3/cms": {
"extension-key": "routing"
}
}
}