From d9d8981fc27dcdedb6ff98d5c0f42ce30230d5a4 Mon Sep 17 00:00:00 2001 From: Louis Fortunier Date: Thu, 4 Jan 2024 12:03:41 +0100 Subject: [PATCH] Add `symfony/property-info` into composer to fix compatibility issue + Add `symfony/security-core` into composer to fix missing service `@security.user_password_encoder.generic` + Remove `scrutinizer.yml` because we don't use it --- CHANGELOG.md | 7 +++++-- composer.json | 7 +++++-- scrutinizer.yml | 26 -------------------------- 3 files changed, 10 insertions(+), 30 deletions(-) delete mode 100644 scrutinizer.yml diff --git a/CHANGELOG.md b/CHANGELOG.md index 85e9e26..f3ae885 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ CHANGELOG for 1.x =================== -## v1.4.9 - (2023-08-24) +## v1.4.9 - (2024-01-04) -### Fixed +### Changes - Remove implement `\Serializable` in User - Add magic method `__serialize` and `__unserialize` instead of `\Serializable` method @@ -17,6 +17,9 @@ CHANGELOG for 1.x - User must implement `PasswordAuthenticatedUserInterface`. Add implementation in `SmartUserInterface` - Add missing method and update method in `UserTrait` - Set dummy password by default in `UserProcessor` +- Add `symfony/property-info` into composer to fix compatibility issue +- Add `symfony/security-core` into composer to fix missing service `@security.user_password_encoder.generic` +- Remove `scrutinizer.yml` because we don't use it ## v1.4.8 - (2023-08-09) diff --git a/composer.json b/composer.json index 811c5d5..217715e 100644 --- a/composer.json +++ b/composer.json @@ -19,12 +19,15 @@ "doctrine/doctrine-fixtures-bundle": "^3.4", "symfony/webpack-encore-bundle": "^1.15 || ^2.0", "theofidry/alice-data-fixtures": "^1.5", - "symfony/mailer": "^4.4 || ^5.4 || ^6.0", + "symfony/mailer": "^4.4 || ^5.4", + "symfony/property-info": "^4.4 || ^5.4", "symfony/security-http": "^4.4 || ^5.4", + "symfony/security-core": "^4.4 || ^5.4", "nelmio/security-bundle": "^2.8 || ^3.0", "yokai/security-token-bundle": "^3.3", "sentry/sentry-symfony": "^4.1", - "doctrine/annotations": "^1.0 || ^2.0" + "doctrine/annotations": "^1.0 || ^2.0", + "symfony/expression-language": "^6.4" }, "require-dev": { "squizlabs/php_codesniffer": "^3.7", diff --git a/scrutinizer.yml b/scrutinizer.yml deleted file mode 100644 index 6988ec2..0000000 --- a/scrutinizer.yml +++ /dev/null @@ -1,26 +0,0 @@ -build: - environment: - node: v10.14.2 - -filter: - excluded_paths: [vendor/*, tests/*] - -before_commands: - - 'composer install --dev --prefer-source' - -checks: - php: true - -tools: - external_code_coverage: false - php_mess_detector: true - php_code_sniffer: true - sensiolabs_security_checker: true - php_code_coverage: true - php_pdepend: true - php_loc: - enabled: true - excluded_dirs: [vendor, tests] - php_cpd: - enabled: true - excluded_dirs: [vendor, tests]