forked from markhuot/craft-pest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.37 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
{
"name": "markhuot/craft-pest",
"type": "craft-plugin",
"version": "2.0.0",
"authors": [
{
"name": "Mark Huot",
"email": "[email protected]"
}
],
"require": {
"fakerphp/faker": "^1.16",
"mockery/mockery": "^1.5",
"symfony/css-selector": "^6.0.3",
"symfony/dom-crawler": "^6.0.3",
"symfony/process": "^5.3",
"illuminate/collections": "^v9.20.0",
"pestphp/pest": "^1.21.1",
"vlucas/phpdotenv": "^5.4",
"phpstan/phpstan": "^1.6"
},
"autoload": {
"psr-4": {
"markhuot\\craftpest\\": "src/"
},
"files": [
"src/helpers/Base.php",
"src/helpers/Http.php",
"src/helpers/Model.php",
"src/helpers/Test.php"
]
},
"extra": {
"name": "craft-pest",
"handle": "pest",
"changelogUrl": "#",
"class": "markhuot\\craftpest\\Pest",
"components": {
"http": "markhuot\\craftpest\\services\\Http"
},
"pest": {
"plugins": [
"markhuot\\craftpest\\pest\\Coverage"
]
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"pestphp/pest-plugin": true,
"craftcms/plugin-installer": true
}
}
}