-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
93 lines (93 loc) · 2.67 KB
/
composer.json
File metadata and controls
93 lines (93 loc) · 2.67 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
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
{
"name": "crazy-goat/workerman-bundle",
"description": "Workerman runtime for symfony applications",
"keywords": [
"workerman",
"symfony",
"runtime",
"php-runtime"
],
"homepage": "https://github.com/crazy-goat/workerman-bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Anton Zenkov",
"email": "anton.z@live.com"
},
{
"name": "Piotr Halas",
"email": "halaspiotr@gmail.com"
}
],
"require": {
"php": "^8.2",
"ext-pcntl": "*",
"ext-posix": "*",
"league/mime-type-detection": "^1.13",
"psr/log": "^3.0",
"symfony/config": "^6.4|^7.0|^8.0",
"symfony/console": "^6.4|^7.0|^8.0",
"symfony/dependency-injection": "^6.4|^7.0|^8.0",
"symfony/http-kernel": "^6.4|^7.0|^8.0",
"symfony/runtime": "^6.4|^7.0|^8.0",
"workerman/workerman": "^5.0"
},
"require-dev": {
"dragonmantank/cron-expression": "^3.4",
"guzzlehttp/guzzle": "^7.8",
"php-cs-fixer/shim": "^3.75",
"phpunit/phpunit": "^10.4",
"rector/rector": "^2.0",
"symfony/framework-bundle": "^6.4|^7.0|^8.0"
},
"suggest": {
"ext-event": "For better performance",
"ext-inotify": "For effective file monitoring",
"dragonmantank/cron-expression": "For parse cron expressions"
},
"autoload": {
"psr-4": {
"CrazyGoat\\WorkermanBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CrazyGoat\\WorkermanBundle\\Test\\": "tests/"
}
},
"config": {
"sort-packages": true,
"audit": {
"block-insecure": false,
"abandoned": "ignore"
},
"allow-plugins": {
"symfony/runtime": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"test": [
"APP_RUNTIME=CrazyGoat\\\\WorkermanBundle\\\\Runtime php tests/App/index.php restart -d",
"sleep 1",
"vendor/bin/phpunit",
"APP_RUNTIME=CrazyGoat\\\\WorkermanBundle\\\\Runtime php tests/App/index.php stop"
],
"lint-fix": [
"vendor/bin/php-cs-fixer fix -v",
"vendor/bin/rector process"
],
"lint": [
"vendor/bin/php-cs-fixer fix -v --dry-run",
"vendor/bin/phpstan",
"vendor/bin/rector process --dry-run"
],
"post-install-cmd": [
"php bin/install-git-hook.php"
],
"post-update-cmd": [
"php bin/install-git-hook.php"
]
}
}