-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
105 lines (105 loc) · 2.5 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "dcr_swoole/framework",
"description": " PHP coroutine framework.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "guanhui07",
"email": "guanhui07@gmail.com"
}
],
"keywords": [
"php",
"swoole",
"framework",
"coroutine"
],
"require": {
"php": ">=8.3.0",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-openssl": "*",
"ext-pcntl": "*",
"ext-pdo": "*",
"ext-redis": "*",
"ext-simplexml": "*",
"ext-swoole": ">=4.8",
"doctrine/annotations": "^2.0",
"doctrine/migrations": "^3.5",
"elasticsearch/elasticsearch": "7.16",
"firebase/php-jwt": "^6.3",
"gregwar/captcha": "^1.1",
"guanhui07/database": "dev-master",
"guanhui07/dcr-swoole-crontab": "dev-master",
"guanhui07/guzzle": "^1.2",
"guanhui07/redis": "^1.1",
"hyperf/aop-integration": " ^1.1",
"hyperf/utils": "3.0.0",
"hyperf/di": "3.0.0",
"inhere/console": "^4.1",
"inhere/php-validate": "^2.8",
"intervention/image": "^2.7",
"middlewares/utils": "^3.0",
"monolog/monolog": "^2.8",
"mwangithegreat/faker": "^1.9",
"nesbot/carbon": "^2.6",
"nikic/fast-route": "^1.3",
"opis/closure": "^3.6",
"php-amqplib/php-amqplib": "^3.2",
"php-di/php-di": "^7.0",
"qiniu/php-sdk": "^7.7",
"spatie/image": "^2.2",
"symfony/event-dispatcher": "^6.2",
"symfony/finder": "^5.0",
"casbin/casbin": "^3.20",
"vlucas/phpdotenv": "^5.4"
},
"require-dev": {
"phpunit/php-timer": "^5.0",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "~1.8.0",
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.0.0",
"swoole/ide-helper": "^5.0"
},
"suggest": {
"php": ">=8.3"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"DcrSwoole\\": "dcr/"
},
"files": [
"dcr/functions.php",
"app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"DcrTest\\": "./test/"
}
},
"scripts": {
"cs-fix": "./vendor/bin/php-cs-fixer fix $1",
"serve": [
"@php ./bin/start.php http:start"
],
"start": [
"@php ./bin/start.php http:start"
],
"ws": "@php ./bin/start.php ws:start ",
"test": "./vendor/bin/phpunit -c phpunit.xml --colors=always",
"phpstan": "./vendor/bin/phpstan analyze"
},
"config": {
"secure-http": false,
"optimize-autoloader": true,
"platform-check": false,
"sort-packages": true
}
}