Skip to content

Commit

Permalink
Allow PHP 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mabar committed Dec 29, 2024
1 parent 77d0864 commit 724284b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
matrix:
include:
- operating-system: "ubuntu-latest"
php-version: "8.3"
php-version: "8.4"

steps:
- name: "Checkout"
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
matrix:
include:
- operating-system: "ubuntu-latest"
php-version: "8.3"
php-version: "8.4"

steps:
- name: "Checkout"
Expand Down Expand Up @@ -101,24 +101,20 @@ jobs:
strategy:
matrix:
operating-system: [ "ubuntu-latest" ]
php-version: [ "7.4", "8.0", "8.1", "8.2", "8.3" ]
php-version: [ "7.4", "8.0", "8.1", "8.2", "8.3", "8.4" ]
composer-flags: [ "" ]
experimental: [ false ]
include:
- operating-system: "ubuntu-latest"
php-version: "7.4"
composer-flags: "--prefer-lowest --prefer-stable"
experimental: false
- operating-system: "ubuntu-latest"
php-version: "8.4"
composer-flags: "--ignore-platform-req=php+"
experimental: true
- operating-system: "macos-latest"
php-version: "8.3"
php-version: "8.4"
composer-flags: ""
experimental: false
- operating-system: "windows-latest"
php-version: "8.3"
php-version: "8.4"
composer-flags: ""
experimental: false

Expand Down Expand Up @@ -170,7 +166,7 @@ jobs:
matrix:
include:
- operating-system: "ubuntu-latest"
php-version: "8.3"
php-version: "8.4"

steps:
- name: "Coveralls"
Expand All @@ -190,7 +186,7 @@ jobs:
matrix:
include:
- operating-system: "ubuntu-latest"
php-version: "8.3"
php-version: "8.4"

steps:
- name: "Checkout"
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"homepage": "https://github.com/TODO-vendor/package",
"authors": [],
"require": {
"php": "7.4 - 8.3",
"php": "7.4 - 8.4",
"orisai/exceptions": "^1.0.0"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion tools/phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ includes:
- phpstan.baseline.neon

parameters:
phpVersion: 80300
phpVersion: 80400
level: 8
tmpDir: ../var/tools/PHPStan
resultCachePath: %currentWorkingDirectory%/var/tools/PHPStan/resultCache.php
Expand Down

0 comments on commit 724284b

Please sign in to comment.