diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..df313910 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +root = true + +[*.json] +indent_size = 4 + +[*.{yaml,yml}] +indent_size = 4 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 68311f8e..c3bb0f93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ ## next - fix vite-plugin-symfony support having externals dependencies. +- increase vite-bundle php minimum compatibility to 8.0 + no major version because the bundle was unusable with php 7.4 because of mixed type. ## v6.3.4 diff --git a/src/vite-bundle/composer.json b/src/vite-bundle/composer.json index 2cc11d9c..88ef60a3 100644 --- a/src/vite-bundle/composer.json +++ b/src/vite-bundle/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.4 || ^8.0", + "php": "^8.0", "symfony/asset": "^4.4 || ^5.0 || ^6.0 || ^7.0", "symfony/config": "^4.4 || ^5.0 || ^6.0 || ^7.0", "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0 || ^7.0",