Skip to content

Commit 3f910a6

Browse files
authored
Merge pull request #5 from codeigniter4/php74
Shuffle PHP versions
2 parents 0729fb6 + 73c9eec commit 3f910a6

File tree

7 files changed

+7
-16
lines changed

7 files changed

+7
-16
lines changed

composer.json

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
}
2222
],
2323
"require": {
24-
"php": "^7.3 || ^8.0",
24+
"php": "^7.4 || ^8.0",
2525
"codeigniter/coding-standard": "^1.1",
2626
"fakerphp/faker": "^1.9",
2727
"mikey179/vfsstream": "^1.6",
@@ -34,15 +34,6 @@
3434
"phpunit/phpunit": "^9.3",
3535
"roave/security-advisories": "dev-latest"
3636
},
37-
"require-dev": {
38-
"codeigniter4/codeigniter4": "dev-develop"
39-
},
40-
"repositories": [
41-
{
42-
"type": "vcs",
43-
"url": "https://github.com/codeigniter4/CodeIgniter4"
44-
}
45-
],
4637
"minimum-stability": "dev",
4738
"prefer-stable": true
4839
}

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)