Skip to content

Commit 7ebc4ea

Browse files
authored
Merge pull request #69 from cedric-anne/feature/php-8.4
Add PHP 8.4 support
2 parents d17d237 + ece85d8 commit 7ebc4ea

8 files changed

+14
-12
lines changed

.github/workflows/test-unit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
operating-system: [ 'ubuntu-latest' ]
14-
php-versions: [ '5.6', '7.0', '7.1', '7.2', '7.3', '8.0', '8.1' ]
14+
php-versions: [ '7.1', '7.2', '7.3', '8.0', '8.1', '8.2', '8.3', '8.4' ]
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v2

composer.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
}
1111
],
1212
"require": {
13-
"ext-json": "*"
13+
"ext-json": "*",
14+
"php": ">=7.1"
1415
},
1516
"require-dev": {
1617
"phperf/phpunit": "4.8.37"
@@ -27,7 +28,7 @@
2728
},
2829
"config": {
2930
"platform": {
30-
"php": "5.4.45"
31+
"php": "7.1.33"
3132
}
3233
}
3334
}

composer.lock

+5-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/InvalidFieldTypeException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function __construct(
2727
$expectedType,
2828
$operation,
2929
$code = 0,
30-
Throwable $previous = null
30+
?Throwable $previous = null
3131
)
3232
{
3333
parent::__construct(

src/MissingFieldException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function __construct(
2222
$missingField,
2323
$operation,
2424
$code = 0,
25-
Throwable $previous = null
25+
?Throwable $previous = null
2626
)
2727
{
2828
parent::__construct('Missing "' . $missingField . '" in operation data', $code, $previous);

src/PatchTestOperationFailedException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function __construct(
2323
$operation,
2424
$actualValue,
2525
$code = 0,
26-
Throwable $previous = null
26+
?Throwable $previous = null
2727
)
2828
{
2929
parent::__construct('Test operation ' . json_encode($operation, JSON_UNESCAPED_SLASHES)

src/PathException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function __construct(
2929
$operation,
3030
$field,
3131
$code = 0,
32-
Throwable $previous = null
32+
?Throwable $previous = null
3333
)
3434
{
3535
parent::__construct($message, $code, $previous);

src/UnknownOperationException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class UnknownOperationException extends Exception
1919
public function __construct(
2020
$operation,
2121
$code = 0,
22-
Throwable $previous = null
22+
?Throwable $previous = null
2323
)
2424
{
2525
// @phpstan-ignore-next-line MissingFieldOperation will be thrown if op is not set

0 commit comments

Comments
 (0)