-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.55 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
54
55
56
57
{
"name": "bymayo/porter",
"description": "A toolkit with lots of helpers for users and accounts",
"type": "craft-plugin",
"version": "5.0.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"porter"
],
"support": {
"docs": "https://github.com/bymayo/craft-porter/blob/craft-5/README.md",
"issues": "https://github.com/bymayo/craft-porter/issues"
},
"license": "MIT",
"authors": [
{
"name": "ByMayo",
"homepage": "https://bymayo.co.uk"
}
],
"require": {
"craftcms/cms": "^5.0.0"
},
"require-dev": {
"vlucas/phpdotenv": "^3.0",
"craftcms/rector": "dev-main",
"craftcms/phpstan": "dev-main"
},
"autoload": {
"psr-4": {
"bymayo\\porter\\": "src/"
}
},
"extra": {
"name": "Porter",
"handle": "porter",
"developer": "ByMayo",
"developerUrl": "https://bymayo.co.uk",
"documentationUrl": "https://github.com/bymayo/craft-porter/blob/craft-5/README.md",
"changelogUrl": "https://raw.githubusercontent.com/bymayo/craft-porter/craft-5/CHANGELOG.md",
"components": {
"porterService": "bymayo\\porter\\services\\PorterService"
},
"class": "bymayo\\porter\\Porter"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}