Skip to content

Commit 2f7f924

Browse files
committed
wip
1 parent 3b5f2a7 commit 2f7f924

38 files changed

+43
-44
lines changed

.github/workflows/coding-conventions.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
pull_request:
55
workflow_dispatch:
66

7-
# CSFixer and Rector are temporarily disabled until they have proper PHP 8.4 support
87
jobs:
98
check-style:
109
name: Run style check
@@ -15,7 +14,7 @@ jobs:
1514
- name: Setup PHP
1615
uses: shivammathur/setup-php@v2
1716
with:
18-
php-version: 8.4
17+
php-version: 8.5
1918
coverage: none
2019

2120
- name: Install dependencies
@@ -46,7 +45,7 @@ jobs:
4645
- name: Setup PHP
4746
uses: shivammathur/setup-php@v2
4847
with:
49-
php-version: 8.4
48+
php-version: 8.5
5049
coverage: none
5150

5251
- name: Install composer dependencies
@@ -65,7 +64,7 @@ jobs:
6564
# - name: Setup PHP
6665
# uses: shivammathur/setup-php@v2
6766
# with:
68-
# php-version: 8.4
67+
# php-version: 8.5
6968
# coverage: none
7069
#
7170
# - name: Install composer dependencies

.github/workflows/integration-tests-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
php:
19-
- 8.4
19+
- 8.5
2020
os:
2121
- windows-latest
2222
env:
@@ -55,7 +55,7 @@ jobs:
5555
os:
5656
- windows-latest
5757
php:
58-
- 8.4
58+
- 8.5
5959
database:
6060
- sqlite
6161
- mysql

.github/workflows/integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
php:
23-
- 8.4
23+
- 8.5
2424
os:
2525
- ubuntu-latest
2626
# - windows-latest
@@ -59,7 +59,7 @@ jobs:
5959
- ubuntu-latest
6060
# - windows-latest
6161
php:
62-
- 8.4
62+
- 8.5
6363
database:
6464
- sqlite
6565
- mysql

.github/workflows/isolated-tests.yml

Lines changed: 2 additions & 2 deletions
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.4
20+
php-version: 8.5
2121
coverage: none
2222

2323
- uses: actions/checkout@v4
@@ -43,7 +43,7 @@ jobs:
4343
- ubuntu-latest
4444
package: ${{ fromJson(needs.get_packages.outputs.matrix) }}
4545
php:
46-
- 8.4
46+
- 8.5
4747
stability:
4848
- prefer-stable
4949
- 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.4
20+
php-version: 8.5
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
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: 8.4
21+
php-version: 8.5
2222
extensions: dom, curl, libxml, mbstring, pcntl, fileinfo, intl
2323
coverage: none
2424

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"monolog/monolog": "^3.7.0",
2525
"nette/php-generator": "^4.1.6",
2626
"nikic/php-parser": "^5.3",
27-
"php": "^8.4",
27+
"php": "^8.5",
2828
"psr-discovery/http-client-implementations": "^1.4",
2929
"psr-discovery/http-factory-implementations": "^1.2",
3030
"psr/cache": "^3.0",

packages/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 authentication and authorization.",
44
"require": {
5-
"php": "^8.4",
5+
"php": "^8.5",
66
"tempest/core": "dev-main",
77
"tempest/router": "dev-main",
88
"tempest/database": "dev-main",

packages/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.4",
5+
"php": "^8.5",
66
"psr/cache": "^3.0",
77
"symfony/cache": "^7.3",
88
"tempest/core": "dev-main",

packages/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.4",
5+
"php": "^8.5",
66
"psr/clock": "^1.0.0",
77
"tempest/datetime": "dev-main"
88
},

0 commit comments

Comments
 (0)