-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
executable file
·57 lines (57 loc) · 1.5 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": "spicyweb/craft-odds-and-ends",
"description": "A collection of useful tools for Craft CMS websites",
"type": "craft-plugin",
"version": "5.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin"
],
"support": {
"docs": "https://github.com/spicywebau/craft-odds-and-ends/blob/5.0.0/README.md",
"issues": "https://github.com/spicywebau/craft-odds-and-ends/issues"
},
"license": "MIT",
"authors": [
{
"name": "Spicy Web",
"homepage": "https://spicyweb.com.au"
}
],
"require": {
"craftcms/cms": "^5.0.0",
"php": "^8.2"
},
"autoload": {
"psr-4": {
"spicyweb\\oddsandends\\": "src/"
}
},
"extra": {
"name": "Odds & Ends",
"handle": "tools",
"schemaVersion": "4.3.1",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://github.com/spicywebau/craft-odds-and-ends/blob/5.x/CHANGELOG.md",
"class": "spicyweb\\oddsandends\\Tools"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/rector": "dev-main"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix"
}
}