Skip to content

Commit

Permalink
task: allow PHP 8.3 (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukadschaak authored Nov 29, 2024
1 parent 0fce481 commit 8c2d673
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: PHP Setup
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3

- name: Validate composer.json
run: composer validate --strict
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
- php-version: "8.2"
dependencies: "highest"
tests: --fail-on-risky
- php-version: "8.3"
dependencies: "highest"
tests: --fail-on-risky

steps:
- name: Git Checkout
Expand Down
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
timeout: 10s

php:
image: pimcore/pimcore:php8.2-latest
image: pimcore/pimcore:php8.3-latest
volumes:
- ./:/var/www/html/
environment:
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"sort-packages": true
},
"require": {
"php": "~8.1.0 || ~8.2.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"doctrine/dbal": "^2.13 || ^3.9",
"pimcore/pimcore": "^10.6 || ^11.0",
"symfony/config": "^5.4 || ^6.4",
Expand All @@ -37,7 +37,7 @@
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-symfony": "^1.4.7",
"phpunit/phpunit": "^9.6.20",
"teamneusta/pimcore-testing-framework": "^0.11.1"
"teamneusta/pimcore-testing-framework": "^0.12.8"
},
"extra": {
"pimcore": {
Expand Down

0 comments on commit 8c2d673

Please sign in to comment.