-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
composer.json
114 lines (114 loc) · 3.35 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
{
"name": "symfony/symfony-demo",
"license": "MIT",
"type": "project",
"description": "Symfony Demo Application",
"minimum-stability": "dev",
"prefer-stable": true,
"replace": {
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*"
},
"require": {
"php": ">=8.2",
"ext-pdo_sqlite": "*",
"doctrine/dbal": "^4.0",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^3.0",
"league/commonmark": "^2.1",
"symfony/apache-pack": "^1.0",
"symfony/asset": "^7",
"symfony/asset-mapper": "^7",
"symfony/console": "^7",
"symfony/dotenv": "^7",
"symfony/expression-language": "^7",
"symfony/flex": "^2",
"symfony/form": "^7",
"symfony/framework-bundle": "^7",
"symfony/html-sanitizer": "^7",
"symfony/http-client": "^7",
"symfony/intl": "^7",
"symfony/mailer": "^7",
"symfony/monolog-bundle": "^3.7",
"symfony/polyfill-intl-messageformatter": "^1.12",
"symfony/runtime": "^7",
"symfony/security-bundle": "^7",
"symfony/stimulus-bundle": "^2.12",
"symfony/string": "^7",
"symfony/translation": "^7",
"symfony/twig-bundle": "^7",
"symfony/ux-icons": "^2.20",
"symfony/ux-live-component": "^2.6",
"symfony/validator": "^7",
"symfony/yaml": "^7",
"symfonycasts/sass-bundle": "^0.7",
"twig/extra-bundle": "^3.3",
"twig/intl-extra": "^3.3",
"twig/markdown-extra": "^3.3"
},
"require-dev": {
"dama/doctrine-test-bundle": "^8.0.2",
"doctrine/doctrine-fixtures-bundle": "^3.5",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-symfony": "^1.2",
"symfony/browser-kit": "^7",
"symfony/css-selector": "^7",
"symfony/debug-bundle": "^7",
"symfony/maker-bundle": "^1.36",
"symfony/phpunit-bridge": "^7",
"symfony/stopwatch": "^7",
"symfony/web-profiler-bundle": "^7",
"twbs/bootstrap": "^5"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "8.2.0"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"importmap:install": "symfony-cmd",
"sass:build": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "7.2.*"
}
}
}