-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·77 lines (77 loc) · 2.06 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·77 lines (77 loc) · 2.06 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "dolphiq/redirect",
"description": "Craft redirect plugin provides an easy way to enter and maintain 301 and 302 redirects and 404 error pages.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"redirect",
"seo"
],
"license": "MIT",
"support": {
"docs": "https://github.com/Dolphiq/craft-plugin-redirect/blob/master/README.md",
"issues": "https://github.com/Dolphiq/craft-plugin-redirect/issues"
},
"authors": [
{
"name": "Dolphiq",
"email": "info@dolphiq.nl",
"homepage": "https://dolphiq.nl/"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0.0"
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"codeception/module-yii2": "^1.1",
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"autoload": {
"psr-4": {
"dolphiq\\redirect\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"dolphiq\\redirect\\tests\\": "tests/"
}
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"extra": {
"name": "Redirect Manager",
"handle": "redirect",
"schemaVersion": "1.0.5",
"developer": "Dolphiq",
"developerUrl": "https://dolphiq.nl/",
"description": "Craft redirect plugin provides an easy way to enter and maintain 301 and 302 redirects and 404 error pages.",
"hasCpSettings": true,
"hasCpSection": true,
"documentationUrl": "https://github.com/Dolphiq/craft-plugin-redirect/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/Dolphiq/craft-plugin-redirect/master/CHANGELOG.md",
"class": "dolphiq\\redirect\\RedirectPlugin"
}
}