-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.83 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
59
60
61
62
63
64
65
66
67
68
{
"name": "skoro/slim-swoole-project",
"description": "Slim Framework + Swoole project boilerplate",
"keywords": [
"microframework", "swoole", "async", "project template"
],
"license": "MIT",
"authors": [
{
"name": "Oleksii Skorobogatko",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/skoro/slim-swoole-project",
"issues": "https://github.com/skoro/slim-swoole-project/issues",
"wiki": "https://github.com/skoro/slim-swoole-project/wiki"
},
"type": "project",
"require": {
"php": ">=8.1",
"ext-swoole": "^4.8",
"slim/slim": "^4.9",
"skoro/slim-swoole-integration": "^0.1",
"vlucas/phpdotenv": "^5.4",
"psr/container": "^1.0",
"php-di/php-di": "^6.3",
"monolog/monolog": "^2.3",
"laminas/laminas-diactoros": "^2.5"
},
"require-dev": {
"swoole/ide-helper": "^4.8",
"symfony/var-dumper": "^6.0",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.3",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"app/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"process-timeout": 0
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"server": "@php bin/server.php",
"server-debug": [
"@putenv DEBUG=true",
"@server"
],
"test": "phpunit",
"test-f": "phpunit --filter",
"check": "phpstan"
}
}