-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer_dev.json.dist
103 lines (103 loc) · 3.17 KB
/
composer_dev.json.dist
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
{
"name": "roadiz/skeleton",
"type": "project",
"license": "mit",
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"liip/monitor-bundle": "^2.22",
"nelmio/cors-bundle": "^2.4",
"roadiz/cms-pack": "dev-develop",
"sentry/sentry-symfony": "^5.1",
"symfony/redis-messenger": "6.4.*",
"symfony/flex": "*",
"symfony/requirements-checker": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-doctrine": "^1.3.1",
"phpstan/phpstan-symfony": "^1.3.7",
"phpunit/phpunit": "^9.5",
"rezozero/intervention-request-bundle": "~3.0.0",
"symfony/browser-kit": "6.4.*",
"symfony/css-selector": "6.4.*",
"symfony/debug-bundle": "6.4.*",
"symfony/maker-bundle": "^1.0",
"symfony/phpunit-bridge": "6.4.*",
"symfony/stopwatch": "6.4.*",
"symfony/web-profiler-bundle": "6.4.*"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/runtime": true,
"php-http/discovery": false
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*"
},
"scripts": {
"post-root-package-install": [
"mkdir -p var/cache var/files var/log var/export var/secret"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"themes:assets:install Rozier": "symfony-cmd",
"requirements-checker": "script"
},
"post-install-cmd": [
"@auto-scripts",
"bin/console lexik:jwt:generate-keypair --skip-if-exists"
],
"post-create-project-cmd": [
"bin/console secrets:generate-keys",
"bin/console secrets:set JWT_PASSPHRASE --random",
"bin/console secrets:set APP_SECRET --random",
"bin/console lexik:jwt:generate-keypair --skip-if-exists"
],
"post-update-cmd": [
"@auto-scripts",
"bin/console lexik:jwt:generate-keypair --skip-if-exists"
]
},
"conflict": {
"symfony/symfony": "*"
},
"suggest": {
"roadiz/two-factor-bundle": "Provides a two-factor authentication system for Roadiz CMS",
"roadiz/user-bundle": "Public user management bundle for Roadiz CMS",
"roadiz/font-bundle": "Manage and expose web fonts with Roadiz CMS"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "6.4.*",
"docker": false
}
}
}