Skip to content

Commit

Permalink
Merge pull request #61 from patchlevel/php84
Browse files Browse the repository at this point in the history
support php 8.4
  • Loading branch information
DavidBadura authored Jan 28, 2025
2 parents 5c13ba0 + 369dc02 commit e60410f
Show file tree
Hide file tree
Showing 12 changed files with 700 additions and 363 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.3"
- "8.4"
operating-system:
- "ubuntu-latest"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coding-standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.3"
- "8.4"
operating-system:
- "ubuntu-latest"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mutation-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.3"
- "8.4"
operating-system:
- "ubuntu-latest"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.3"
- "8.4"
operating-system:
- "ubuntu-latest"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.3"
- "8.4"
operating-system:
- "ubuntu-latest"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ jobs:
php-version:
- "8.2"
- "8.3"
- "8.4"
operating-system:
- "ubuntu-latest"
include:
- dependencies: "locked"
php-version: "8.3"
php-version: "8.4"
operating-system: "ubuntu-latest"
- dependencies: "locked"
php-version: "8.3"
php-version: "8.4"
operating-system: "windows-latest"

steps:
- name: "Checkout"
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ phpunit: vendor

.PHONY: infection
infection: vendor ## run infection
vendor/bin/infection
XDEBUG_MODE=coverage vendor/bin/infection

.PHONY: static
static: psalm phpstan phpcs-check ## run static analyser
Expand Down
11 changes: 5 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,23 @@
}
],
"require": {
"php": "~8.2.0 || ~8.3.0",
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-openssl": "*",
"symfony/type-info": "^7.2.2"
},
"require-dev": {
"cspray/phinal": "^2.0.0",
"infection/infection": "^0.27.8",
"infection/infection": "^0.29.10",
"patchlevel/coding-standard": "^1.3.0",
"psr/cache": "^2.0.0|^3.0.0",
"psr/simple-cache": "^2.0.0|^3.0.0",
"phpbench/phpbench": "^1.2.15",
"phpspec/prophecy-phpunit": "^2.1.0",
"phpstan/phpstan": "^2.1.0",
"phpunit/phpunit": "^10.5.2",
"psalm/plugin-phpunit": "^0.19.0",
"roave/infection-static-analysis-plugin": "^1.34.0",
"psalm/plugin-phpunit": "^0.19.2",
"roave/infection-static-analysis-plugin": "^1.36.0",
"symfony/var-dumper": "^5.4.29|^6.4.0|^7.0.0",
"vimeo/psalm": "^5.17.0"
"vimeo/psalm": "^6.0.0"
},
"config": {
"preferred-install": {
Expand Down
Loading

0 comments on commit e60410f

Please sign in to comment.