Skip to content

Commit

Permalink
Merge pull request #373 from CPS-IT/feature/php-8.3
Browse files Browse the repository at this point in the history
[FEATURE] Add support for PHP 8.3
  • Loading branch information
eliashaeussler authored Nov 9, 2023
2 parents 3a089a4 + 098846e commit e60bc71
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ["8.1", "8.2"]
php-version: ["8.1", "8.2", "8.3"]
composer-version: ["2.1", "2.2", "2.3", "2.4", "2.5", "2.6"]
dependencies: ["highest", "lowest"]
steps:
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3
tools: composer:v2
coverage: pcov

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-filter": "*",
"ext-json": "*",
"ext-mbstring": "*",
Expand Down
4 changes: 2 additions & 2 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 installer/composer.json.twig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Template installer for cpsit/project-builder",
"license": "GPL-3.0-or-later",
"require": {
"php": "~8.1.0 || ~8.2.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"composer/installers": "^2.0",
"oomphinc/composer-installers-extender": "^2.0",
{% for templateSource in templateSources %}
Expand Down
2 changes: 1 addition & 1 deletion tests/src/Fixtures/Templates/json-template/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cpsit/project-builder-template-json",
"type": "project-builder-template",
"require": {
"php": "~8.1.0 || ~8.2.0"
"php": "~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
Expand Down
2 changes: 1 addition & 1 deletion tests/src/Fixtures/Templates/yaml-template/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cpsit/project-builder-template-yaml",
"type": "project-builder-template",
"require": {
"php": "~8.1.0 || ~8.2.0"
"php": "~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
Expand Down

0 comments on commit e60bc71

Please sign in to comment.