-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
54 lines (54 loc) · 1.54 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
{
"name": "toxmc/fast-laravel",
"description": "High performance HTTP server based on Swoole. Make your Laravel applications fast.",
"keywords": ["swoole", "laravel", "performance", "http", "server"],
"license": "MIT",
"authors": [
{
"name": "mc",
"email": "smalleyes@live.cn"
}
],
"require": {
"php": "^7.1",
"illuminate/console": "~5.1",
"illuminate/contracts": "~5.1",
"illuminate/http": "~5.1",
"illuminate/support": "~5.1",
"inhere/console": "^3.0"
},
"require-dev": {
"laravel/framework": "5.5.*",
"phpunit/phpunit": "^6.1",
"mockery/mockery": "~1.0",
"codedungeon/phpunit-result-printer": "^0.14.0",
"php-mock/php-mock": "^2.0",
"swoft/swoole-ide-helper": "^4.3",
"mongodb/mongodb": "^1.4"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"FastLaravel\\Http\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"FastLaravel\\Http\\Tests\\": "tests",
"FastLaravel\\Http\\Tests\\Fixtures\\Laravel\\App\\": "tests/fast/laravel/app"
}
},
"extra": {
"laravel": {
"providers": [
"FastLaravel\\Http\\LaravelServiceProvider"
],
"aliases": {
"Server": "FastLaravel\\Http\\Server\\Facades\\Server",
"Table": "FastLaravel\\Http\\Server\\Facades\\Table"
}
}
}
}