-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
120 lines (120 loc) · 3.05 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "k911/swoole-bundle-symfony-demo",
"type": "project",
"description": "Symfony minimal hello world project built with Swoole Bundle and Docker",
"keywords": [
"PHP",
"Bundle",
"Swoole",
"Async",
"Demo",
"Docker",
"Hello-World"
],
"license": "MIT",
"homepage": "https://github.com/k911/swoole-bundle-symfony-demo",
"authors": [{
"name": "Konrad Obal",
"email": "[email protected]",
"homepage": "https://github.com/k911"
}],
"require": {
"php": "^7.4",
"ext-ctype": "*",
"k911/swoole-bundle": "^0.8.1",
"sensio/framework-extra-bundle": "^5.5",
"symfony/console": "^5.1.2",
"symfony/dotenv": "^5.1.2",
"symfony/flex": "^1.6",
"symfony/framework-bundle": "^5.1.2",
"symfony/messenger": "^5.1.2",
"symfony/monolog-bundle": "^3.5",
"symfony/twig-pack": "^1.0",
"symfony/yaml": "^5.1.2"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"static-analyse-src": [
"phpstan analyze src -l 7 -c phpstan.neon.dist --ansi --memory-limit=512M"
],
"rector-analyse": [
"rector process --dry-run --ansi"
],
"cs-analyse": [
"php-cs-fixer fix -v --dry-run --diff --stop-on-violation --ansi"
],
"psalm-analyse": [
"psalm"
],
"analyse": [
"@static-analyse-src",
"@cs-analyse",
"@rector-analyse",
"@psalm-analyse"
],
"test": [
"@analyse"
],
"fix-cs-fixer": [
"php-cs-fixer fix -v --ansi"
],
"fix-rector": [
"rector process --ansi"
],
"fix-psalter": [
"psalm --alter --issues=all"
],
"fix" : [
"@fix-cs-fixer",
"@fix-rector",
"@fix-psalter"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.32",
"rector/rector": "^0.7.48",
"vimeo/psalm": "^3.12"
}
}