This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
123 lines (123 loc) · 3.45 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
{
"name": "app/app",
"type": "project",
"license": "proprietary",
"description": "A skeleton to start a new Symfony website",
"require": {
"php": "~8.0",
"ext-ctype": "*",
"ext-iconv": "*",
"api-platform/core": "^2.5",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^2.2",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/orm": "^2.7",
"friendsofsymfony/jsrouting-bundle": "^2.6",
"knplabs/doctrine-behaviors": "^2.0",
"knplabs/knp-time-bundle": "^1.11",
"league/html-to-markdown": "^4.10",
"nelmio/cors-bundle": "^2.1",
"nyholm/psr7": "^1.4",
"php-translation/symfony-bundle": "^0.12.3",
"predis/predis": "^1.1",
"sensio/framework-extra-bundle": "^6.1",
"sentry/sentry-symfony": "^4.1",
"snc/redis-bundle": "^3.2",
"symfony/asset": "*",
"symfony/console": "*",
"symfony/dotenv": "*",
"symfony/expression-language": "*",
"symfony/flex": "^1.9",
"symfony/form": "*",
"symfony/framework-bundle": "*",
"symfony/http-client": "*",
"symfony/intl": "*",
"symfony/mailer": "*",
"symfony/mailgun-mailer": "*",
"symfony/monolog-bundle": "^3.5",
"symfony/process": "*",
"symfony/runtime": "*",
"symfony/security-bundle": "*",
"symfony/serializer": "*",
"symfony/translation": "*",
"symfony/twig-bundle": "*",
"symfony/validator": "*",
"symfony/web-link": "*",
"symfony/webpack-encore-bundle": "^1.7",
"symfony/yaml": "*",
"twig/cssinliner-extra": "^3.0",
"twig/extra-bundle": "^3.0",
"twig/inky-extra": "^3.0",
"twig/intl-extra": "^3.0",
"twig/string-extra": "^3.0",
"willdurand/js-translation-bundle": "^4.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"hautelook/alice-bundle": "^2.9",
"phpstan/phpstan": "^0.12.88",
"phpstan/phpstan-doctrine": "^0.12.38",
"phpstan/phpstan-phpunit": "^0.12.19",
"phpstan/phpstan-strict-rules": "^0.12.9",
"phpstan/phpstan-symfony": "^0.12.34",
"rector/rector": "^0.11.7",
"symfony/browser-kit": "*",
"symfony/css-selector": "*",
"symfony/debug-pack": "*",
"symfony/maker-bundle": "*",
"symfony/phpunit-bridge": "*",
"symfony/profiler-pack": "*"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"bin-dir": "bin/"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Fixtures\\": "fixtures/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/phpunit"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"bin": "echo 'Composer plugin \"bin\" not installed, see https://github.com/bamarni/composer-bin-plugin'",
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"./bin/dump-translations.sh": "script",
"fos:js-routing:dump --target assets/_generated/routes.json --format json": "symfony-cmd"
},
"post-install-cmd": [
"@composer bin all install --ansi",
"@auto-scripts"
],
"post-update-cmd": [
"@composer bin all update --ansi",
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.3.*"
}
}
}