-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (66 loc) · 1.65 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
66
67
68
{
"name": "wpstarter/o-testbench-core",
"description": "Testing Helper for WpStarter Development",
"homepage": "https://packages.tools/testbench",
"keywords": ["wpstarter", "orchestral", "orchestra-platform", "testing", "tdd", "bdd"],
"license": "MIT",
"support": {
"issues": "https://github.com/orchestral/testbench/issues",
"source": "https://github.com/orchestral/testbench-core"
},
"authors": [
{
"name": "As247",
"email": "as247@wpstarter.dev",
"homepage": "https://github.com/as247"
}
],
"autoload": {
"psr-4": {
"Orchestra\\Testbench\\" : "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Orchestra\\Testbench\\Tests\\": "tests/"
}
},
"bin": [
"testbench"
],
"require": {
"php": "^7.3 || ^8.0",
"fakerphp/faker": "^1.9.1",
"symfony/yaml": "^5.0",
"vlucas/phpdotenv": "^5.1"
},
"require-dev": {
"wpstarter/framework": "^1.4",
"mockery/mockery": "^1.4.4",
"phpunit/phpunit": "^8.5.21 || ^9.5.10",
"symfony/process": "^5.0"
},
"suggest": {
},
"extra": {
},
"scripts": {
"prepare": [
"@php testbench package:discover --ansi"
],
"test": [
"@composer run prepare",
"@php vendor/bin/phpunit -c ./ --color"
],
"post-autoload-dump": [
"@composer run prepare"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}