-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·72 lines (72 loc) · 2.16 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "zaengle/craft-conventions",
"description": "Craft Conventions",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"conventions"
],
"homepage": "https://craft-conventions.zaengle.com",
"support": {
"docs": "https://craft-conventions.zaengle.com",
"issues": "https://github.com/zaengle/craft-conventions/issues",
"source": "https://github.com/zaengle/craft-toolbelt"
},
"license": "MIT",
"authors": [
{
"name": "Zaengle Corp",
"homepage": "https://zaengle.com/"
}
],
"require": {
"craftcms/cms": "^4.0.1||^5.0.0",
"php": "^8.2 | ^8.3"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"nunomaduro/collision": "^8.1",
"pestphp/pest": "^2.34",
"phpstan/phpstan": "^1.11",
"roave/security-advisories": "dev-latest",
"symplify/easy-coding-standard": "^10.3"
},
"autoload": {
"psr-4": {
"zaengle\\conventions\\": "src/"
}
},
"extra": {
"name": "Conventions",
"handle": "conventions",
"developer": "Zaengle Corp",
"developerUrl": "https://zaengle.com/",
"documentationUrl": "https://craft-conventions.zaengle.com",
"changelogUrl": "https://raw.githubusercontent.com/zaengle/craft-conventions/master/CHANGELOG.md",
"components": {
"pattern": "zaengle\\conventions\\services\\Pattern",
"scaffold": "zaengle\\conventions\\services\\Scaffold"
},
"class": "zaengle\\conventions\\Conventions",
"hasCpSettings": false,
"hasCpSection": false
},
"config": {
"sort-packages": true,
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"pestphp/pest-plugin": true
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --memory-limit=1G --ansi",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix"
},
"minimum-stability": "dev",
"prefer-stable": true
}