Skip to content

Commit

Permalink
Add support for PHP 8.3 (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
stloyd authored Dec 18, 2023
1 parent 2032dca commit 698cfba
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 14 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ jobs:
php-version:
- "8.1"
- "8.2"
- "8.3"
operating-system:
- "ubuntu-latest"

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"license": "MIT",
"require": {
"php": "~8.1.10 || ~8.2",
"php": "~8.1.10 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"ext-mbstring": "*",
"azuyalabs/yasumi": "~2.0",
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 src/business-hours/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"business hours"
],
"require": {
"php": "~8.1.10 || ~8.2",
"php": "~8.1.10 || ~8.2.0 || ~8.3.0",
"aeon-php/calendar": "~1.0"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/calendar-doctrine/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"doctrine"
],
"require": {
"php": "~8.1.10 || ~8.2",
"php": "~8.1.10 || ~8.2.0 || ~8.3.0",
"aeon-php/calendar": "~1.0",
"doctrine/dbal": "~2.6 || ~3.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/calendar-holidays-yasumi/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"bridge"
],
"require": {
"php": "~8.1.10 || ~8.2",
"php": "~8.1.10 || ~8.2.0 || ~8.3.0",
"aeon-php/calendar-holidays": "~1.0",
"azuyalabs/yasumi": "~2.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/calendar-holidays/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"holidays"
],
"require": {
"php": "~8.1.10 || ~8.2",
"php": "~8.1.10 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"ext-mbstring": "*",
"aeon-php/calendar": "~1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/calendar-twig/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"extension"
],
"require": {
"php": "~8.1.10 || ~8.2",
"php": "~8.1.10 || ~8.2.0 || ~8.3.0",
"aeon-php/calendar": "~1.0",
"twig/twig": "~1.43||~2.10||~3"
},
Expand Down
2 changes: 1 addition & 1 deletion src/calendar/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"datetime"
],
"require": {
"php": "~8.1.10 || ~8.2"
"php": "~8.1.10 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
"ext-bcmath": "*",
Expand Down
2 changes: 1 addition & 1 deletion src/collection/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"datetime"
],
"require": {
"php": "~8.1.10 || ~8.2",
"php": "~8.1.10 || ~8.2.0 || ~8.3.0",
"aeon-php/calendar": "~1.0"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/rate-limiter/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"limiter"
],
"require": {
"php": "~8.1.10 || ~8.2",
"php": "~8.1.10 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"aeon-php/calendar": "~1.0",
"aeon-php/sleep": "~1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/retry/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"retry"
],
"require": {
"php": "~8.1.10 || ~8.2",
"php": "~8.1.10 || ~8.2.0 || ~8.3.0",
"aeon-php/calendar": "~1.0",
"aeon-php/sleep": "~1.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/sleep/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"sleep"
],
"require": {
"php": "~8.1.10 || ~8.2",
"php": "~8.1.10 || ~8.2.0 || ~8.3.0",
"aeon-php/calendar": "~1.0"
},
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/symfony-bundle/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"retry"
],
"require": {
"php": "~8.1.10 || ~8.2",
"php": "~8.1.10 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"aeon-php/calendar": "~1.0",
"aeon-php/calendar-holidays": "~1.0",
Expand Down

0 comments on commit 698cfba

Please sign in to comment.