-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
88 lines (88 loc) · 2.5 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
{
"name": "sumocoders/framework",
"type": "project",
"license": "proprietary",
"require": {
"php": "^8.3",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-sodium": "*",
"symfony/flex": "^2"
},
"flex-require": {
"beberlei/doctrineextensions": "^1.5",
"doctrine/doctrine-migrations-bundle": "^3.3",
"sentry/sentry-symfony": "^5.0",
"sumocoders/framework-core-bundle": "^11.0",
"symfony/apache-pack": "^1.0.1",
"symfony/asset-mapper": "^7.1",
"symfony/debug-bundle": "^7.1",
"symfony/dotenv": "^7.1",
"symfony/expression-language": "^7.1",
"symfony/flex": "^2.4",
"symfony/http-client": "^7.1",
"symfony/mailer": "^7.1",
"symfony/messenger": "^7.1",
"symfony/monolog-bundle": "^3.10",
"symfony/rate-limiter": "^7.1",
"symfony/runtime": "^7.1",
"symfony/security-bundle": "^7.1",
"symfony/stimulus-bundle": "^2.20",
"symfony/ux-turbo": "^2.20",
"symfony/validator": "^7.1",
"symfony/web-profiler-bundle": "^7.1",
"symfony/yaml": "^7.1",
"symfonycasts/sass-bundle": "^0.7.0",
"twbs/bootstrap": "^5.3"
},
"require-dev": {
},
"flex-require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.6",
"micheh/phpcs-gitlab": "^1.1",
"phpstan/phpstan-symfony": "^1.4",
"phpstan/phpstan-doctrine": "^1.5",
"squizlabs/php_codesniffer": "^3.10",
"symfony/debug-pack": "*",
"symfony/maker-bundle": "*",
"symfony/phpunit-bridge": "^7.1",
"symfony/stopwatch": "^7.1",
"tijsverkoyen/deployer-sumo": "^4.1",
"vincentlanglet/twig-cs-fixer": "*"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true,
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": [
],
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"post-create-project-cmd": "App\\Skeleton\\PostCreateProject::run"
},
"extra": {
"symfony": {
"allow-contrib": true
}
}
}