Skip to content

Commit

Permalink
Merge pull request #113 from Slamdunk/php_83
Browse files Browse the repository at this point in the history
Add PHP 8.3 support, drop PHP < 8.2
  • Loading branch information
Slamdunk authored Nov 21, 2023
2 parents 09ddd51 + fb989d0 commit 2972c0d
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Setup PHP, with composer and extensions
uses: shivammathur/[email protected]
with:
php-version: 8.1
php-version: 8.2
coverage: pcov
tools: cs2pr

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/composer-require-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Setup PHP with composer require checker
uses: shivammathur/[email protected]
with:
php-version: 8.1
php-version: 8.2
tools: composer-require-checker

- name: Cache composer dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/roave-bc-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup PHP, with composer and extensions
uses: shivammathur/[email protected]
with:
php-version: 8.1
php-version: 8.2
coverage: pcov
tools: cs2pr

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Setup PHP, with composer and extensions
uses: shivammathur/[email protected]
with:
php-version: 8.1
php-version: 8.2
coverage: pcov
tools: cs2pr

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ jobs:
strategy:
matrix:
php-version:
- '8.1'
- '8.2'
- '8.3'
dependencies:
- 'locked'
- 'latest'
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 @@
],
"homepage": "https://github.com/Roave/psr-container-doctrine",
"require": {
"php": "~8.1.0 || ~8.2.0",
"php": "~8.2.0 || ~8.3.0",
"doctrine/annotations": "^1.14.3 || ^2.0.1",
"doctrine/cache": "^2.2",
"doctrine/common": "^3.4.3",
Expand Down Expand Up @@ -52,7 +52,7 @@
"ocramius/package-versions": true
},
"platform": {
"php": "8.1.99"
"php": "8.2.99"
},
"sort-packages": true
}
Expand Down
6 changes: 3 additions & 3 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions example/composer.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"type": "project",
"require": {
"php": "~8.1.0 || ~8.2.0",
"php": "~8.2.0 || ~8.3.0",
"illuminate/container": "^10.32.1",
"laminas/laminas-servicemanager": "^3.22.1",
"symfony/cache": "^6.3.8"
},
"config": {
"platform": {
"php": "8.1.99"
"php": "8.2.99"
},
"sort-packages": true
}
Expand Down

0 comments on commit 2972c0d

Please sign in to comment.