-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.25 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": "miranj/craft-redirector",
"description": "A Craft CMS plugin for redirecting URLs to entries.",
"type": "craft-plugin",
"keywords": [
"craft-plugin",
"craftcms",
"redirect",
"url"
],
"license": "MIT",
"authors": [
{
"name": "Miranj",
"homepage": "https://miranj.in"
}
],
"support": {
"docs": "https://github.com/miranj/craft-redirector/blob/dev/README.md",
"issues": "https://github.com/miranj/craft-redirector/issues",
"source": "https://github.com/miranj/craft-redirector"
},
"require": {
"craftcms/cms": "^3.7.0 || ^4.0.0 || ^5.0",
"php": "^7.4 || ^8.0"
},
"require-dev": {
"craftcms/rector": "dev-main",
"craftcms/phpstan": "dev-main"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"autoload": {
"psr-4": {
"miranj\\redirector\\": "src/"
}
},
"extra": {
"name": "Redirector",
"handle": "redirector",
"changelogUrl": "https://raw.githubusercontent.com/miranj/craft-redirector/main/CHANGELOG.md",
"class": "miranj\\redirector\\Plugin"
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G"
}
}