-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.22 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
{
"name": "mehdi-fathi/sicilian-test-orchestra",
"description": "An efficient composer package to test all of your routes with send request to make sure all things works well",
"keywords": [
"laravel",
"laravel tools",
"SicilianTestOrchestra",
"Sicilian Test Orchestra",
"feature tests",
"tests",
"laravel tests",
"test laravel"
],
"type": "library",
"autoload": {
"psr-4": {
"SicilianTestOrchestra\\": "src/"
}
},
"authors": [
{
"name": "Mehdi",
"email": "[email protected]"
}
],
"require": {
"phpunit/phpunit": "8.3|8.5|9.3|^9.5|10.5.5",
"orchestra/testbench": "5.*|^6.0|^6.6.0|^7.0.0|^8.0.0|v9.0.0"
},
"require-dev": {
"phpunit/phpunit": "8.3|8.5|9.3|^9.5|10.5.5",
"orchestra/testbench": "5.*|^6.0|^6.6.0|^7.0.0|^8.0.0|v9.0.0",
"laravel/laravel": "~8.0|~9.0|~10.0|~11.0"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
},
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"test" : "vendor/bin/phpunit --coverage-text"
}
}