diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f2f5013..0a73078 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,11 +14,11 @@ jobs: matrix: include: #Mini (for each Symfony version) - - php-version: '8.0' + - php-version: '8.1' symfony-version: '5.4.*' composer-flags: '--prefer-stable --prefer-lowest' description: 'with SF 5.4.* lowest' - - php-version: '8.0' + - php-version: '8.1' symfony-version: '6.0.*' composer-flags: '--prefer-stable --prefer-lowest' description: 'with SF 6.0.* lowest' @@ -54,7 +54,6 @@ jobs: description: 'with SF 6.3.*' #PHP versions - - php-version: '8.0' - php-version: '8.1' - php-version: '8.2' @@ -64,7 +63,7 @@ jobs: coding-standards: true #Static Analysis (min PHP version) - - php-version: '8.0' + - php-version: '8.1' description: 'with Static Analysis' static-analysis: true diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 55777ed..0738a31 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -21,7 +21,7 @@ '@Symfony' => true, '@Symfony:risky' => true, '@DoctrineAnnotation' => true, - '@PHP80Migration' => true, + '@PHP81Migration' => true, '@PHP80Migration:risky' => true, '@PHPUnit84Migration:risky' => true, 'array_syntax' => ['syntax' => 'short'], diff --git a/composer.json b/composer.json index 53f5d28..a9a2e2e 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "require": { - "php": "^8.0", + "php": "^8.1", "ext-json": "*", "ext-mbstring": "*", "doctrine/collections": "^1.5|^2.0", diff --git a/tests/Functional/App/public/index.php b/tests/Functional/App/public/index.php index 77552c2..0367e06 100644 --- a/tests/Functional/App/public/index.php +++ b/tests/Functional/App/public/index.php @@ -18,7 +18,7 @@ require dirname(__DIR__).'/config/bootstrap.php'; if ($_SERVER['APP_DEBUG']) { - umask(0000); + umask(0); Debug::enable(); }