forked from orchestral/testbench
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 1.04 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
{
"name": "unicorn/lumen-testbench",
"description": "Lumen fork of the orchestra/testbench Laravel Testing Helper for Packages Development",
"homepage": "http://orchestraplatform.com/docs/latest/components/testbench/",
"keywords": ["laravel", "orchestral", "orchestra-platform", "testing", "tdd", "bdd", "lumen"],
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]",
"homepage": "https://github.com/crynobone"
}
],
"autoload-dev": {
"psr-4": {
"Lumen\\Testbench\\Tests\\": "core/tests/"
}
},
"require": {
"php": ">=7.3",
"laravel/lumen-framework": "^7.0",
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^8.4 || ^9.0",
"unicorn/lumen-testbench-core": "dev-master"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"unicorn/lumen-testing": "dev-master"
}
}