-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
62 lines (62 loc) · 1.73 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
{
"name": "markhuot/craft-pest-core",
"type": "yii2-extension",
"description": "A Pest runner",
"license": "proprietary",
"authors": [
{
"name": "Mark Huot",
"email": "[email protected]"
}
],
"require": {
"fakerphp/faker": "^1.16",
"mockery/mockery": "^1.5",
"symfony/css-selector": "^5.3|^6.0",
"symfony/dom-crawler": "^6.0.3",
"symfony/process": "^5.3|^6.0",
"pestphp/pest": "^2.26|^3.0",
"vlucas/phpdotenv": "^2.4|^3.4|^5.4",
"craftcms/cms": "^4.5|^5.0.0-beta.1",
"illuminate/support": "^9.52|^10.0|^11.0",
"composer/composer": "^2.7",
"composer/semver": "^3.4"
},
"autoload": {
"psr-4": {
"markhuot\\craftpest\\": "src/"
},
"files": [
"src/helpers/Base.php",
"src/helpers/Craft.php",
"src/helpers/Http.php",
"src/helpers/Model.php",
"src/helpers/Queue.php",
"src/helpers/Test.php"
]
},
"extra": {
"bootstrap": "markhuot\\craftpest\\Pest",
"pest": {
"plugins": [
"markhuot\\craftpest\\pest\\Coverage",
"markhuot\\craftpest\\pest\\MonkeyPatches"
]
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"pestphp/pest-plugin": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/phpstan": "dev-main",
"craftcms/craft": "^4.0.0|^5.0.0-alpha.1",
"symfony/var-dumper": "^5.0|^6.0",
"laravel/pint": "^1.13"
}
}