-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.18 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
{
"name": "eslizn/polaris",
"homepage": "https://github.com/eslizn/polaris",
"description": "app framework for php",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "eslizn",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Polaris\\": "src/"
},
"files": [
"helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Polaris\\Tests\\": "tests/"
},
"files": [
"helpers.php"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^7.4",
"psr/container": "^1",
"psr/event-dispatcher": "^1",
"psr/http-server-middleware": "^1",
"psr/http-factory": "^1",
"psr/http-client": "^1",
"psr/log": "^1",
"php-http/httplug": "^2.3",
"nikic/fast-route": "^1",
"ext-json": "*",
"ext-sockets": "*",
"ext-curl": "*",
"ext-pdo": "*",
"ext-gmp": "*"
},
"require-dev": {
"phpunit/phpunit": "^9",
"vlucas/phpdotenv": "^5",
"swoole/ide-helper": "dev-master"
},
"provide": {
"php-http/client-implementation": "1.0",
"php-http/async-client-implementation": "1.0",
"psr/http-client-implementation": "1.0"
}
}