website/composer.json
Jeroen De Meerleer d40e3eb2ac
Updated dependencies to newer versions
The project's dependencies have been updated to their latest stable versions. This includes updates for several Symfony components, the Nelmio security bundle, and other related packages. The composer.lock file has also been updated accordingly to reflect these changes.
2024-06-18 17:40:26 +02:00

77 lines
1.9 KiB
JSON
Executable File

{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.3",
"ext-ctype": "*",
"ext-iconv": "*",
"erusev/parsedown": "^1.7",
"nelmio/security-bundle": "^v3.3",
"symfony/console": "^v7.1",
"symfony/dotenv": "^7.1",
"symfony/flex": "^v2.4",
"symfony/framework-bundle": "^7.1",
"symfony/runtime": "^7.1",
"symfony/twig-bundle": "^7.1",
"symfony/webpack-encore-bundle": "^2.1",
"symfony/yaml": "^7.1"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/runtime": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "^7.0"
}
},
"require-dev": {
"symfony/stopwatch": "^7.0",
"symfony/web-profiler-bundle": "^7.0"
}
}