generated from ostark/craft-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
65 lines (64 loc) · 1.76 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
{
"name": "ostark/craft-relax",
"description": "Craft relax! Less database I/O ",
"type": "craft-plugin",
"keywords": [
"craftcms",
"craft-plugin",
"craft-relax"
],
"homepage": "https://github.com/ostark/craft-relax",
"license": "MIT",
"authors": [
{
"name": "Oliver Stark",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/ostark/craft-relax/issues?state=open",
"source": "https://github.com/ostark/craft-relax",
"docs": "https://github.com/ostark/craft-relax/blob/main/README.md"
},
"require": {
"php": "^8.0",
"craftcms/cms": "^5.0.1",
"yiisoft/yii2-queue": "^2.3.3"
},
"require-dev": {
"craftcms/phpstan": "*",
"craftcms/rector": "dev-main",
"friendsofphp/php-cs-fixer": "^3.0",
"pestphp/pest": "^1.2"
},
"autoload": {
"psr-4": {
"ostark\\Relax\\": "src"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"yiisoft/yii2-composer": true,
"pestphp/pest-plugin": true,
"craftcms/plugin-installer": true,
"treeware/plant": true
}
},
"extra": {
"name": "Relax",
"handle": "relax",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/ostark/craft-relax/main/CHANGELOG.md",
"class": "ostark\\Relax\\Plugin"
},
"prefer-stable": true,
"minimum-stability": "dev"
}