-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
36 lines (36 loc) · 870 Bytes
/
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
{
"name": "markhuot/craft-pest",
"type": "craft-plugin",
"description": "A Pest runner",
"license": "proprietary",
"authors": [
{
"name": "Mark Huot",
"email": "[email protected]"
}
],
"require": {
"craftcms/cms": "^4.5|^5.0.0-beta.1",
"markhuot/craft-pest-core": "^2.0.0"
},
"autoload": {
"psr-4": {
"markhuot\\craftpestplugin\\": "src/"
}
},
"extra": {
"name": "Pest",
"handle": "pest",
"changelogUrl": "#",
"class": "markhuot\\craftpestplugin\\Pest"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"pestphp/pest-plugin": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}