Skip to content

Commit

Permalink
Merge pull request #151 from ergebnis/feature/php83
Browse files Browse the repository at this point in the history
Enhancement: Require and use PHP 8.3.0
  • Loading branch information
localheinz committed Jan 26, 2024
2 parents d344f72 + cc62a32 commit d4c3d4b
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 23 deletions.
16 changes: 8 additions & 8 deletions .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ branches:
required_approving_review_count: 1
required_status_checks:
checks:
- context: "Code Coverage (8.2, locked)"
- context: "Coding Standards (8.2, locked)"
- context: "Dependency Analysis (8.2, locked)"
- context: "Mutation Tests (8.2, locked)"
- context: "Refactoring (8.2, locked)"
- context: "Security Analysis (8.2, locked)"
- context: "Static Code Analysis (8.2, locked)"
- context: "Tests (8.2, locked)"
- context: "Code Coverage (8.3, locked)"
- context: "Coding Standards (8.3, locked)"
- context: "Dependency Analysis (8.3, locked)"
- context: "Mutation Tests (8.3, locked)"
- context: "Refactoring (8.3, locked)"
- context: "Security Analysis (8.3, locked)"
- context: "Static Code Analysis (8.3, locked)"
- context: "Tests (8.3, locked)"
strict: false
restrictions: null

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.2"
- "8.3"

dependencies:
- "locked"
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.2"
- "8.3"

dependencies:
- "locked"
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.2"
- "8.3"

dependencies:
- "locked"
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.2"
- "8.3"

dependencies:
- "locked"
Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.2"
- "8.3"

dependencies:
- "locked"
Expand Down Expand Up @@ -376,7 +376,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.2"
- "8.3"

dependencies:
- "locked"
Expand Down Expand Up @@ -424,7 +424,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.2"
- "8.3"

dependencies:
- "locked"
Expand Down Expand Up @@ -487,7 +487,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.2"
- "8.3"

dependencies:
- "locked"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.2"
- "8.3"

dependencies:
- "locked"
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"security": "https://github.com/ergebnis/laravel-application-template/blob/main/.github/SECURITY.md"
},
"require": {
"php": "~8.2.0",
"php": "~8.3.0",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-intl": "*",
Expand Down Expand Up @@ -86,7 +86,7 @@
},
"optimize-autoloader": true,
"platform": {
"php": "8.2.8"
"php": "8.3.2"
},
"preferred-install": "dist",
"sort-packages": true
Expand Down
6 changes: 3 additions & 3 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
__DIR__.'/tests/',
]);

$rectorConfig->phpVersion(ValueObject\PhpVersion::PHP_81);
$rectorConfig->phpVersion(ValueObject\PhpVersion::PHP_83);

$rectorConfig->rules([
Php81\Rector\Property\ReadOnlyPropertyRector::class,
Expand Down

0 comments on commit d4c3d4b

Please sign in to comment.