forked from AltThree/TestBench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 962 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
37
38
{
"name": "alt-three/testbench",
"description": "Provides some testing traits for apps",
"keywords": ["testbench", "app", "TestBench", "Alt Three"],
"license": "MIT",
"authors": [
{
"name": "Alt Three",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0 || ^8.0",
"graham-campbell/testbench-core": "^3.2"
},
"require-dev": {
"graham-campbell/analyzer": "^2.4 || ^3.0",
"phpunit/phpunit": "^6.5 || ^7.5 || ^8.4 || ^9.0"
},
"suggest": {
"laravel/framework": "Enables the use of most traits."
},
"autoload": {
"psr-4": {
"AltThree\\TestBench\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AltThree\\Tests\\TestBench\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}