-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
174 lines (174 loc) · 5.58 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "peon/peon",
"type": "project",
"description": "",
"authors": [
{
"name": "Jan Mikeš",
"email": "j.mikes@me.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/janmikes/psr7"
},
{
"type": "vcs",
"url": "https://github.com/janmikes/Client"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1.0",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-uuid": "*",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^2.4",
"doctrine/doctrine-migrations-bundle": "^3.1",
"doctrine/orm": "^2.9",
"dragonmantank/cron-expression": "^3.1",
"guzzlehttp/psr7": "dev-fix-missing-uri-throws-annotation as 2.2",
"jetbrains/phpstorm-attributes": "^1.0",
"knplabs/github-api": "^3.7",
"knplabs/knp-time-bundle": "^1.16",
"lcobucci/clock": "^2.0",
"lorisleiva/cron-translator": "^0.3.0",
"m4tthumphrey/php-gitlab-api": "11.4.x-dev as 11.4.1",
"monolog/monolog": "^3.0",
"nette/utils": "^3.2",
"nyholm/psr7": "^1.3",
"phpdocumentor/reflection-docblock": "^5.2",
"psr/log": "^3.0",
"ramsey/uuid": "^4.2",
"sensio/framework-extra-bundle": "^6.1",
"sentry/sentry-symfony": "^4.2",
"symfony/asset": "^6.1",
"symfony/config": "^6.1",
"symfony/console": "^6.1",
"symfony/dependency-injection": "^6.1",
"symfony/doctrine-messenger": "^6.1",
"symfony/dotenv": "^6.1",
"symfony/expression-language": "^6.1",
"symfony/flex": "^2.1",
"symfony/form": "^6.1",
"symfony/framework-bundle": "^6.1",
"symfony/http-client": "^6.1",
"symfony/http-kernel": "^6.1",
"symfony/intl": "^6.1",
"symfony/mailer": "^6.1",
"symfony/mercure-bundle": "^0.3.4",
"symfony/messenger": "^6.1",
"symfony/mime": "^6.1",
"symfony/monolog-bundle": "^3.8",
"symfony/notifier": "^6.1",
"symfony/process": "^6.1",
"symfony/property-access": "^6.1",
"symfony/property-info": "^6.1",
"symfony/proxy-manager-bridge": "^6.1",
"symfony/runtime": "^6.1",
"symfony/security-bundle": "^6.1",
"symfony/security-csrf": "^6.1",
"symfony/serializer": "^6.1",
"symfony/slack-notifier": "^6.1",
"symfony/string": "^6.1",
"symfony/translation": "^6.1",
"symfony/twig-bundle": "^6.1",
"symfony/ux-turbo": "^2.1",
"symfony/ux-turbo-mercure": "^2.1",
"symfony/validator": "^6.1",
"symfony/web-link": "^6.1",
"symfony/webpack-encore-bundle": "^1.14",
"symfony/yaml": "^6.1",
"thecodingmachine/safe": "^2.0",
"twig/extra-bundle": "^3.0",
"twig/twig": "^3.0",
"uxf/hydrator": "^3.0"
},
"require-dev": {
"ext-simplexml": "*",
"dama/doctrine-test-bundle": "^7.1",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"mangoweb/monolog-tracy-handler": "^1.1",
"pepakriz/phpstan-exception-rules": "^0.12",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest",
"symfony/browser-kit": "^6.0",
"symfony/css-selector": "^6.0",
"symfony/debug-bundle": "^6.0",
"symfony/stopwatch": "^6.0",
"symfony/var-dumper": "^6.0",
"symfony/web-profiler-bundle": "^6.0",
"symplify/config-transformer": "^11.0"
},
"autoload": {
"psr-4": {
"Peon\\": "src",
"Peon\\Packages\\MessageBus\\": "packages/MessageBus",
"Peon\\Packages\\Enum\\": "packages/Enum"
},
"exclude-from-classmap": [
"src/Infrastructure/Persistence/Doctrine/Migrations"
]
},
"autoload-dev": {
"psr-4": {
"Peon\\Packages\\PHPStan\\": "packages/PHPStan",
"Peon\\Tests\\": "tests"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan --memory-limit=-1 analyse",
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"config-dir": "src/Infrastructure/Symfony/Config",
"symfony": {
"allow-contrib": true,
"require": "6.1.*"
}
},
"replace": {
"symfony/polyfill-intl-grapheme": "*",
"symfony/polyfill-intl-icu": "*",
"symfony/polyfill-intl-idn": "*",
"symfony/polyfill-intl-normalizer": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-uuid": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/runtime": true
}
}
}