Jeroen De Meerleer
d6b87569a6
The PHP version requirement in composer.json has been updated from 8.2 to 8.3. This change ensures compatibility with the latest version of PHP. Update ca-bundle package to version 1.4.0 The ca-bundle package has been updated from version 1.3.7 to version 1.4.0. This update includes bug fixes and improvements. Update parsedown package to latest version The parsedown package has been updated to the latest available version, which is not specified in the code changes. Update nelmio/security-bundle package to version v3.1.1 The nelmio/security-bundle package has been updated from version v3.1.0 to v3.1.1,
77 lines
1.9 KiB
JSON
Executable File
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": "^3.1",
|
|
"symfony/console": "^7.0",
|
|
"symfony/dotenv": "^7.0",
|
|
"symfony/flex": "^2.3",
|
|
"symfony/framework-bundle": "^7.0",
|
|
"symfony/runtime": "^7.0",
|
|
"symfony/twig-bundle": "^7.0",
|
|
"symfony/webpack-encore-bundle": "^2.1",
|
|
"symfony/yaml": "^7.0"
|
|
},
|
|
"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"
|
|
}
|
|
}
|