Skip to content

Commit acbc6aa

Browse files
authored
chore: prep for PHP 8.4 (#780)
1 parent cc0c7ee commit acbc6aa

File tree

27 files changed

+30
-30
lines changed

27 files changed

+30
-30
lines changed

.github/workflows/coding-conventions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup PHP
2727
uses: shivammathur/setup-php@v2
2828
with:
29-
php-version: 8.3
29+
php-version: 8.4
3030
coverage: none
3131

3232
- name: Install composer dependencies
@@ -45,7 +45,7 @@ jobs:
4545
- name: Setup PHP
4646
uses: shivammathur/setup-php@v2
4747
with:
48-
php-version: 8.3
48+
php-version: 8.4
4949
coverage: none
5050

5151
- name: Install composer dependencies

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- ubuntu-latest
1717
- windows-latest
1818
php:
19-
- 8.3
19+
- 8.4
2020
database:
2121
- sqlite
2222
- mysql

.github/workflows/isolated-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set Up PHP
1515
uses: shivammathur/setup-php@v2
1616
with:
17-
php-version: 8.3
17+
php-version: 8.4
1818
coverage: none
1919

2020
- uses: actions/checkout@v4
@@ -40,7 +40,7 @@ jobs:
4040
- ubuntu-latest
4141
package: ${{ fromJson(needs.get_packages.outputs.matrix) }}
4242
php:
43-
- 8.3
43+
- 8.4
4444
stability:
4545
- prefer-stable
4646
- prefer-lowest

.github/workflows/subsplit-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set Up PHP
1818
uses: shivammathur/setup-php@v2
1919
with:
20-
php-version: 8.3
20+
php-version: 8.4
2121
coverage: none
2222

2323
- uses: actions/checkout@v4

.github/workflows/validate-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup PHP
1616
uses: shivammathur/setup-php@v2
1717
with:
18-
php-version: 8.3
18+
php-version: 8.4
1919
extensions: dom, curl, libxml, mbstring, pcntl, fileinfo
2020
coverage: none
2121

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"monolog/monolog": "^3.7.0",
2121
"nette/php-generator": "^4.1.6",
2222
"nikic/php-parser": "^5.3",
23-
"php": "^8.3",
23+
"php": "^8.4",
2424
"psr-discovery/http-client-implementations": "1.x-dev",
2525
"psr-discovery/http-factory-implementations": "1.x-dev",
2626
"psr/cache": "^3.0",

src/Tempest/Auth/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "tempest/auth",
33
"description": "A flexible authentication package for Tempest, providing user authentication and authorization.",
44
"require": {
5-
"php": "^8.3",
5+
"php": "^8.4",
66
"tempest/core": "dev-main",
77
"tempest/http": "dev-main",
88
"tempest/database": "dev-main"

src/Tempest/Cache/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "tempest/cache",
33
"description": "The PHP framework that gets out of your way.",
44
"require": {
5-
"php": "^8.3",
5+
"php": "^8.4",
66
"psr/cache": "^3.0",
77
"symfony/cache": "^7.2",
88
"tempest/core": "dev-main"

src/Tempest/Clock/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "tempest/clock",
33
"description": "A clock component that handle few simple clock operations.",
44
"require": {
5-
"php": "^8.3",
5+
"php": "^8.4",
66
"psr/clock": "^1.0.0"
77
},
88
"autoload": {

src/Tempest/CommandBus/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "tempest/command-bus",
33
"description": "A command bus component designed to dispatch commands to their respective handlers.",
44
"require": {
5-
"php": "^8.3",
5+
"php": "^8.4",
66
"tempest/core": "dev-main",
77
"tempest/container": "dev-main"
88
},

0 commit comments

Comments
 (0)