diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index db53dfc..f25a3af 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -29,26 +29,23 @@ jobs: matrix: include: - description: 'No Symfony specified' - php: '8.0' + php: '8.1' - description: 'No Symfony specified' php: '8.2' - description: 'Lowest deps' - php: '7.4' + php: '8.0' composer_option: '--prefer-lowest' env: SYMFONY_DEPRECATIONS_HELPER: max[self]=0 - description: 'Symfony 5.4' - php: '7.4' + php: '8.0' symfony: 5.4.* - - description: 'Symfony 6.1' - php: '8.1' - symfony: 6.1.* - - description: 'Symfony 6.2' - php: '8.1' - symfony: 6.2.* - - description: 'Dev deps' + - description: 'Symfony 6.4' php: '8.2' - symfony: 6.3.*@dev + symfony: 6.4.* + - description: 'Latest' + php: '8.3' + symfony: 7.0.* name: PHP ${{ matrix.php }} tests (${{ matrix.description }}) steps: - name: Checkout diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index b43eb39..6a1af8b 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -10,7 +10,7 @@ ->setRules([ '@Symfony' => true, '@Symfony:risky' => true, - '@PHP71Migration:risky' => true, + '@PHP80Migration:risky' => true, '@PHPUnit75Migration:risky' => true, 'ordered_imports' => true, 'declare_strict_types' => false, diff --git a/composer.json b/composer.json index 15ea742..acd5205 100644 --- a/composer.json +++ b/composer.json @@ -21,14 +21,14 @@ } ], "require": { - "php": "^7.4 || ^8.0", + "php": "^8.0", "pugx/shortid-doctrine": "^1.0", - "symfony/config": "^4.4 || ^5.4 || ^6.0", - "symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0", - "symfony/http-kernel": "^4.4 || ^5.4 || ^6.0" + "symfony/config": "^5.4 || ^6.0 || ^7.0", + "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0", + "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0" }, "require-dev": { - "phpunit/phpunit": "^8.5 || ^9.5" + "phpunit/phpunit": "^9.6" }, "config": { "bin-dir": "bin",