Skip to content

Commit 41f6508

Browse files
committed
fix: remove deprecation notices in php 8.4
1 parent 522b955 commit 41f6508

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
matrix:
17-
php: [8.2, 8.3]
17+
php: [8.2, 8.3, 8.4]
1818
laravel: [11]
1919

2020
steps:

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. This projec
55

66
## Unreleased
77

8+
### Fixed
9+
10+
- Remove deprecation notices in PHP 8.4.
11+
812
## [4.0.0] - 2024-03-14
913

1014
### Changed

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
"ext-json": "*",
2828
"illuminate/contracts": "^11.0",
2929
"illuminate/support": "^11.0",
30-
"laravel-json-api/core": "^4.0",
31-
"laravel-json-api/neomerx-json-api": "^5.0.1"
30+
"laravel-json-api/core": "^4.3.2",
31+
"laravel-json-api/neomerx-json-api": "^5.0.3"
3232
},
3333
"require-dev": {
3434
"phpunit/phpunit": "^10.5"
@@ -53,7 +53,7 @@
5353
]
5454
}
5555
},
56-
"minimum-stability": "stable",
56+
"minimum-stability": "dev",
5757
"prefer-stable": true,
5858
"config": {
5959
"sort-packages": true

phpunit.xml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
failOnWarning="true"
1414
failOnDeprecation="true"
1515
failOnNotice="true"
16+
displayDetailsOnTestsThatTriggerDeprecations="true"
1617
>
1718
<coverage/>
1819
<testsuites>

0 commit comments

Comments
 (0)