generated from tomdavies/craft-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 2.22 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
73
74
75
{
"name": "zaengle/craft-toolbelt",
"description": "Utility tools for CraftCMS projects",
"type": "craft-plugin",
"keywords": [
"craftcms",
"craft-plugin",
"craft-toolbelt"
],
"homepage": "https://craft-toolbelt.zaengle.com",
"license": "MIT",
"authors": [
{
"name": "Zaengle Corp",
"email": "dev@zaengle.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/zaengle/craft-toolbelt/issues?state=open",
"source": "https://github.com/zaengle/craft-toolbelt",
"docs": "https://craft-toolbelt.zaengle.com"
},
"require": {
"craftcms/cms": "^4.0.0||^5.0.0",
"php": "^8.2 | ^8.3",
"newridetech/php-classnames": "^1.2"
},
"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\\Toolbelt\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"zaengle\\Toolbelt\\Tests\\": "tests"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --memory-limit=1G --ansi",
"test": "vendor/bin/pest",
"lint": "vendor/bin/pest coverage",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"changelogUrl": "https://raw.githubusercontent.com/zaengle/craft-toolbelt/main/CHANGELOG.md",
"class": "zaengle\\Toolbelt\\Toolbelt",
"developer": "Zaengle Corp",
"developerUrl": "https://zaengle.com/",
"documentationUrl": "https://craft-toolbelt.zaengle.com",
"handle": "toolbelt",
"hasCpSection": false,
"hasCpSettings": false,
"name": "Toolbelt"
},
"minimum-stability": "dev",
"prefer-stable": true
}