-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
126 lines (126 loc) · 4.55 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
{
"name": "runroom/archetype-symfony",
"description": "This is our Symfony project template",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Runroom",
"email": "[email protected]",
"homepage": "https://www.runroom.com"
}
],
"homepage": "https://github.com/Runroom/archetype-symfony",
"require": {
"php": "~8.3.0",
"ext-apcu": "*",
"a2lix/auto-form-bundle": "0.4.7",
"a2lix/translation-form-bundle": "3.2.4",
"doctrine/dbal": "3.9.3",
"doctrine/doctrine-bundle": "2.13.1",
"doctrine/doctrine-fixtures-bundle": "3.7.1",
"doctrine/doctrine-migrations-bundle": "3.3.1",
"doctrine/orm": "3.3.1",
"friendsofsymfony/ckeditor-bundle": "2.5.0",
"gedmo/doctrine-extensions": "3.17.1",
"jaybizzle/crawler-detect": "1.3.0",
"runroom-packages/basic-page-bundle": "0.20.0",
"runroom-packages/ckeditor-sonata-media-bundle": "0.20.0",
"runroom-packages/cookies-bundle": "0.20.0",
"runroom-packages/doctrine-translatable-bundle": "0.20.0",
"runroom-packages/redirection-bundle": "0.20.0",
"runroom-packages/seo-bundle": "0.20.0",
"runroom-packages/sortable-behavior-bundle": "0.20.0",
"runroom-packages/translation-bundle": "0.20.0",
"runroom/samples-bundle": "0.15.1",
"sonata-project/admin-bundle": "4.34.0",
"sonata-project/block-bundle": "5.1.1",
"sonata-project/doctrine-extensions": "2.4.1",
"sonata-project/doctrine-orm-admin-bundle": "4.17.1",
"sonata-project/exporter": "3.3.0",
"sonata-project/form-extensions": "2.4.0",
"sonata-project/media-bundle": "4.15.0",
"sonata-project/twig-extensions": "2.5.0",
"sonata-project/user-bundle": "5.14.0",
"symfony/doctrine-messenger": "7.2.2",
"symfony/dotenv": "7.2.0",
"symfony/flex": "2.4.7",
"symfony/framework-bundle": "7.2.2",
"symfony/mailer": "7.2.0",
"symfony/messenger": "7.2.1",
"symfony/monolog-bundle": "3.10.0",
"symfony/runtime": "7.2.0",
"symfony/security-bundle": "7.2.2",
"symfony/twig-bundle": "7.2.0",
"symfony/ux-twig-component": "2.22.1",
"symfony/webpack-encore-bundle": "2.2.0",
"twig/extra-bundle": "3.18.0",
"twig/string-extra": "3.18.0",
"twig/twig": "3.18.0",
"zenstruck/foundry": "2.1.0"
},
"require-dev": {
"dama/doctrine-test-bundle": "8.2.0",
"ergebnis/composer-normalize": "2.45.0",
"friendsofphp/php-cs-fixer": "3.65.0",
"phpstan/phpstan": "1.12.15",
"phpstan/phpstan-doctrine": "1.5.7",
"phpstan/phpstan-phpunit": "1.4.2",
"phpstan/phpstan-symfony": "1.4.13",
"phpunit/phpunit": "9.6.22",
"psalm/plugin-phpunit": "0.19.0",
"psalm/plugin-symfony": "5.2.6",
"rector/rector": "1.2.10",
"runroom-packages/testing": "0.20.0",
"symfony/debug-bundle": "7.2.0",
"symfony/maker-bundle": "1.61.0",
"symfony/phpunit-bridge": "7.2.0",
"symfony/stopwatch": "7.2.2",
"symfony/web-profiler-bundle": "7.2.2",
"vimeo/psalm": "5.26.1",
"weirdan/doctrine-psalm-plugin": "2.9.0",
"zenstruck/browser": "1.9.1"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "^7.1"
}
},
"scripts": {
"lint-container": "@php bin/console lint:container",
"lint-twig": "@php bin/console lint:twig templates",
"lint-yaml": "@php bin/console lint:yaml config src translations --parse-tags",
"php-cs-fixer": "@php php-cs-fixer fix --ansi --verbose",
"phpstan": "@php phpstan analyse --no-progress",
"psalm": "@php psalm --stats",
"rector": "@php rector --no-progress-bar"
}
}