-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
58 lines (58 loc) · 1.19 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
55
56
57
58
{
"name": "tamerhassan/october-fly",
"description": "Make OctoberCMS faster by using swoole extension.",
"type": "library",
"keywords": [
"swoole",
"OctoberCMS"
],
"homepage": "http://www.github.com/tamer-hassan/october-fly",
"license": "MIT",
"authors": [
{
"name": "Tamer Hassan",
"email": "[email protected]"
}
],
"require": {
"october/rain": "~1.0",
"october/system": "~1.0",
"october/backend": "~1.0",
"october/cms": "~1.0",
"laravel/framework": "5.5.*",
"ext-swoole": ">=4.0.0",
"scil/laravel-fly": "v0.8"
},
"suggest": {
"ext-inotify": ">=2.0.0"
},
"require-dev": {
"eaglewu/swoole-ide-helper": "dev-master",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.0",
"mockery/mockery": "^1.0",
"orchestra/testbench-core": "^3.6"
},
"autoload": {
"psr-4": {
"OctoberFly\\": "src/OctoberFly/"
}
},
"autoload-dev": {
"psr-4": {
}
},
"extra": {
"laravel": {
"providers": [
"OctoberFly\\Providers\\ServiceProvider"
],
"aliases": {
},
"dont-discover": [
"hhxsv5/laravel-s",
"scil/laravel-fly"
]
}
}
}