-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
53 lines (53 loc) · 1.6 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
47
48
49
50
51
52
53
{
"name": "venveo/craft-redirect",
"description": "Craft redirect plugin provides an easy way to enter and maintain 301 and 302 redirects and 404 error pages.",
"type": "craft-plugin",
"version": "4.0.0-beta.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"redirect",
"seo",
"craft3",
"dolphiq",
"venveo"
],
"license": "MIT",
"support": {
"docs": "https://github.com/venveo/craft-redirect/blob/master/README.md",
"issues": "https://github.com/venveo/craft-redirect/issues"
},
"authors": [
{
"name": "Venveo",
"email": "[email protected]",
"homepage": "https://www.venveo.com"
},
{
"name": "Dolphiq",
"email": "[email protected]",
"homepage": "https://dolphiq.nl/"
}
],
"require": {
"craftcms/cms": "^4.0.0-beta.1",
"php": "^8.0.2"
},
"autoload": {
"psr-4": {
"venveo\\redirect\\": "src/"
}
},
"extra": {
"name": "Redirects",
"handle": "vredirect",
"developer": "Venveo",
"developerUrl": "https://www.venveo.com",
"description": "Craft redirect plugin provides an easy way to enter and maintain 301 and 302 redirects and 404 error pages.",
"documentationUrl": "https://github.com/venveo/craft-redirect/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/venveo/craft-redirect/master/CHANGELOG.md",
"class": "venveo\\redirect\\Plugin"
}
}