-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
110 lines (110 loc) · 3.23 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
{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.3",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-imagick": "*",
"ext-intl": "*",
"async-aws/s3": "^2.0",
"async-aws/scheduler": "^1.1",
"bref/bref": "^2.1",
"bref/extra-php-extensions": "^1.4",
"bref/symfony-bridge": "^0.2.2",
"bref/symfony-messenger": "^0.5.4",
"dragonmantank/cron-expression": "^3.3",
"nyholm/psr7": "^1.8",
"php-http/discovery": "^1.18",
"psr/http-factory-implementation": "*",
"rikudou/lemmy-api": "^0.8.0",
"rikudou/psr6-dynamo-db-bundle": "^4.0",
"symfony/amazon-sqs-messenger": "*",
"symfony/apache-pack": "^1.0",
"symfony/asset": "*",
"symfony/browser-kit": "6.4.*",
"symfony/cache": "*",
"symfony/console": "*",
"symfony/css-selector": "6.4.*",
"symfony/dotenv": "*",
"symfony/expression-language": "*",
"symfony/flex": "^2",
"symfony/framework-bundle": "*",
"symfony/http-client": "*",
"symfony/mime": "*",
"symfony/psr-http-message-bridge": "^2.3.0",
"symfony/redis-messenger": "*",
"symfony/runtime": "*",
"symfony/security-bundle": "*",
"symfony/stimulus-bundle": "^2.10",
"symfony/translation": "*",
"symfony/twig-bundle": "*",
"symfony/uid": "*",
"symfony/ux-live-component": "^2.10",
"symfony/ux-turbo": "^2.10",
"symfony/webpack-encore-bundle": "^2.0",
"symfony/yaml": "*",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0",
"unleash/symfony-client-bundle": "^0.10.282"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"fixer": "php-cs-fixer fix --verbose --allow-risky=yes"
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "6.4.*"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.22",
"symfony/debug-bundle": "*",
"symfony/maker-bundle": "^1.50",
"symfony/monolog-bundle": "^3.0",
"symfony/stopwatch": "*",
"symfony/web-profiler-bundle": "*"
}
}