forked from nystudio107/craft-retour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.33 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
44
45
46
{
"name": "nystudio107/craft-retour",
"description": "Retour allows you to intelligently redirect legacy URLs, so that you don't lose SEO value when rebuilding & restructuring a website",
"type": "craft-plugin",
"version": "3.1.29",
"keywords": [
"craftcms",
"craft-plugin",
"retour",
"redirect",
"404",
"statistics"
],
"support": {
"docs": "https://nystudio107.com/plugins/retour/documentation",
"issues": "https://nystudio107.com/plugins/retour/support"
},
"license": "proprietary",
"authors": [
{
"name": "nystudio107",
"homepage": "https://nystudio107.com/"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"league/csv": "^8.2"
},
"autoload": {
"psr-4": {
"nystudio107\\retour\\": "src/"
}
},
"extra": {
"name": "Retour",
"handle": "retour",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-retour/v1/CHANGELOG.md",
"components": {
"redirects": "nystudio107\\retour\\services\\Redirects",
"statistics": "nystudio107\\retour\\services\\Statistics"
},
"class": "nystudio107\\retour\\Retour"
}
}