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 14ec062 commit 68ab835
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 15 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
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased](https://github.com/orisai/nette-scheduler/compare/1.2.1...v1.x)

### Changed

- Composer
- Allow PHP 8.4

## [1.2.1](https://github.com/orisai/nette-scheduler/compare/1.2.0...1.2.1) - 2024-06-21

### Added
### Changed

- Allow PHP 8.3
- Composer
- Allow PHP 8.3

## [1.2.0](https://github.com/orisai/nette-scheduler/compare/1.1.0...1.2.0) - 2024-05-26

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
],
"require": {
"php": "7.4 - 8.3",
"php": "7.4 - 8.4",
"nette/di": "^3.0.5",
"nette/schema": "^1.1.0",
"orisai/cron-expression-explainer": "^1.0.0",
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 68ab835

Please sign in to comment.