-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.75 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.75 KB
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
59
60
61
62
63
64
65
66
67
{
"name": "makise-co/framework",
"description": "PHP Coroutine micro framework",
"keywords": [
"micro",
"framework",
"makise",
"coroutine",
"swoole"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dmitry K.",
"email": "coder1994@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"suggest": {
"makise-co/postgres": "To work with modern PostgreSQL Coroutine driver",
"makise-co/orm-bundle": "To work with modern ORM",
"makise-co/postgres-spiral-driver": "To work with modern DBAL"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-swoole": "^4.4",
"laminas/laminas-diactoros": "^2.4",
"makise-co/http-router": "^1.0",
"monolog/monolog": "^2.0",
"nunomaduro/collision": "^4.1",
"php-di/php-di": "^6.1",
"psr/log": "^1.1",
"symfony/console": "^5.0",
"symfony/event-dispatcher": "^5.0",
"symfony/finder": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/property-access": "^5.0",
"symfony/var-dumper": "^5.0",
"vlucas/phpdotenv": "^4.1"
},
"require-dev": {
"phpstan/phpstan": "^0.12.18",
"phpstan/phpstan-phpunit": "^0.12.6",
"phpunit/phpunit": "^9.0",
"swoole/ide-helper": "^4.4"
},
"autoload": {
"psr-4": {
"MakiseCo\\": "src/"
},
"files": [
"src/Env/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"MakiseCo\\Tests\\": "tests/"
}
}
}