Skip to content

Commit 1c0085d

Browse files
committed
Upgrade to PHP 8.3+ and PHPUnit 12.1+
- Updated PHP requirement from ^8.2 to ^8.3 to align with PHPUnit 12 requirements - Updated PHPUnit requirement from ^11.0 to ^12.1 to get latest features and bug fixes - Updated GitHub workflows to test with PHP 8.3 and 8.4 instead of 8.2 and 8.3
1 parent 10adcef commit 1c0085d

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
php-version:
13-
- "8.2"
13+
- "8.3"
1414

1515
steps:
1616
- name: "Checkout"

.github/workflows/continuous-integration.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,42 +13,42 @@ jobs:
1313
strategy:
1414
matrix:
1515
php-version:
16-
- "8.2"
1716
- "8.3"
17+
- "8.4"
1818
deps:
1919
- "normal"
2020
symfony-require:
2121
- ""
2222
symfony-deprecations-helper:
2323
- ""
2424
include:
25-
# PHP 8.2 test matrix
26-
- php-version: "8.2"
25+
# PHP 8.3 test matrix
26+
- php-version: "8.3"
2727
deps: "normal"
2828

29-
- php-version: "8.2"
29+
- php-version: "8.3"
3030
deps: "low"
3131

32-
- php-version: "8.2"
32+
- php-version: "8.3"
3333
deps: "dev"
3434

35-
# Test Symfony 7 with PHP 8.2
36-
- php-version: "8.2"
35+
# Test Symfony 7 with PHP 8.3
36+
- php-version: "8.3"
3737
deps: "normal"
3838
symfony-require: "7.0.*"
3939

40-
# PHP 8.3 test matrix
41-
- php-version: "8.3"
40+
# PHP 8.4 test matrix
41+
- php-version: "8.4"
4242
deps: "normal"
4343

44-
- php-version: "8.3"
44+
- php-version: "8.4"
4545
deps: "low"
4646

47-
- php-version: "8.3"
47+
- php-version: "8.4"
4848
deps: "dev"
4949

50-
# Test latest Symfony with PHP 8.3
51-
- php-version: "8.3"
50+
# Test latest Symfony with PHP 8.4
51+
- php-version: "8.4"
5252
deps: "normal"
5353
symfony-require: "7.*"
5454

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
strategy:
1111
matrix:
1212
php-version:
13-
- "8.2"
1413
- "8.3"
14+
- "8.4"
1515

1616
steps:
1717
- name: "Checkout code"

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"license": "MIT",
3232
"name": "php-tmdb/api",
3333
"require": {
34-
"php": "^8.2",
34+
"php": "^8.3",
3535
"ext-json": "*",
3636
"psr/cache": "^1 || ^2 || ^3",
3737
"psr/simple-cache": "^1 || ^2 || ^3",
@@ -44,7 +44,7 @@
4444
"psr/http-factory": "^1",
4545
"psr/http-factory-implementation": "^1",
4646
"psr/http-message": "^1 || ^2",
47-
"phpunit/phpunit": "^12.0"
47+
"phpunit/phpunit": "^12.1"
4848
},
4949
"require-dev": {
5050
"nyholm/psr7": "^1.2",

0 commit comments

Comments
 (0)