-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 876 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
{
"name": "stekel/laravel-bench",
"description": "Php wrapper for Apache-Bench with Laravel integration.",
"license": "MIT",
"minimum-stability": "dev",
"require": {
"php": ">7.4",
"illuminate/console": "^5.5 || >6.0",
"illuminate/support": "^5.5 || >6.0",
"laravel/helpers": "^1.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"stekel\\LaravelBench\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"stekel\\LaravelBench\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"stekel\\LaravelBench\\Laravel\\Providers\\LaravelBenchServiceProvider"
],
"aliases": {}
}
}
}