-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
43 lines (43 loc) · 1.14 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
34
35
36
37
38
39
40
41
42
43
{
"name": "davist11/craft-reroute",
"description": "Manage 301/302 redirects in the control panel.",
"type": "craft-plugin",
"version": "2.0.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"reroute"
],
"support": {
"docs": "https://github.com/davist11/craft-reroute/blob/master/README.md",
"issues": "https://github.com/davist11/craft-reroute/issues"
},
"license": "MIT",
"authors": [
{
"name": "Trevor Davis",
"homepage": "https://www.trevor-davis.com"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1"
},
"autoload": {
"psr-4": {
"davist11\\reroute\\": "src/"
}
},
"extra": {
"name": "Reroute",
"handle": "reroute",
"hasCpSettings": false,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/davist11/craft-reroute/master/CHANGELOG.md",
"components": {
"rerouteService": "davist11\\reroute\\services\\RerouteService"
},
"class": "davist11\\reroute\\Reroute"
}
}