Skip to content

Commit dcd8547

Browse files
committed
Shuffle PHP versions
1 parent 0729fb6 commit dcd8547

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/.github/workflows/phpcsfixer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
php-versions: ['7.3', '7.4', '8.0']
25+
php-versions: ['7.4', '8.0', '8.1']
2626

2727
steps:
2828
- name: Checkout

src/.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
php-versions: ['7.3', '7.4', '8.0']
29+
php-versions: ['7.4', '8.0', '8.1']
3030

3131
steps:
3232
- name: Checkout

src/.github/workflows/phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
if: "!contains(github.event.head_commit.message, '[ci skip]')"
2626
strategy:
2727
matrix:
28-
php-versions: ['7.3', '7.4', '8.0']
28+
php-versions: ['7.4', '8.0', '8.1']
2929

3030
steps:
3131
- name: Checkout

src/.github/workflows/rector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
php-versions: ['7.3', '7.4', '8.0']
29+
php-versions: ['7.4', '8.0', '8.1']
3030

3131
steps:
3232
- name: Checkout

src/phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
44
bootstrap="vendor/codeigniter4/framework/system/Test/bootstrap.php"
55
backupGlobals="false"
66
beStrictAboutCoversAnnotation="true"

src/rector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
return static function (ContainerConfigurator $containerConfigurator): void {
3939
// Rule sets to apply
4040
$containerConfigurator->import(SetList::DEAD_CODE);
41-
$containerConfigurator->import(LevelSetList::UP_TO_PHP_73);
41+
$containerConfigurator->import(LevelSetList::UP_TO_PHP_74);
4242
$containerConfigurator->import(PHPUnitSetList::PHPUNIT_SPECIFIC_METHOD);
4343
$containerConfigurator->import(PHPUnitSetList::PHPUNIT_80);
4444

0 commit comments

Comments
 (0)