Skip to content

Commit 5922741

Browse files
feat: Add php 8 attribute support for JSON:API model conversion (#3)
1 parent 9a466d0 commit 5922741

File tree

16 files changed

+710
-381
lines changed

16 files changed

+710
-381
lines changed

.github/workflows/phpunit.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ jobs:
1111
os:
1212
- ubuntu-latest
1313
php:
14-
- 7.4
1514
- 8.0
1615
dependency-version: [prefer-lowest, prefer-stable]
1716

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v1.1.0 - 2021-XX-XX
4+
5+
- add php 8 attribute support for JSON:API model conversion
6+
- drop php 7.4 support
7+
38
## v1.0.0 - 2021-05-21
49

510
- initial release

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@
99
"license": "MIT",
1010
"homepage": "https://github.com/dogado-group/json-api-common",
1111
"require": {
12-
"php": "^7.4 || ^8.0",
12+
"php": "^8.0",
1313
"ext-json": "*",
1414
"psr/http-message": "^1.0",
15-
"doctrine/annotations": "^1.11",
15+
"doctrine/annotations": "^1.12",
1616
"illuminate/support": "^7.0 || ^8.0"
1717
},
1818
"require-dev": {
1919
"phpunit/phpunit": "^9.5",
2020
"fakerphp/faker": "^1.10",
2121
"guzzlehttp/psr7": "^1.7",
22-
"phpstan/phpstan": "^0.12.53",
23-
"squizlabs/php_codesniffer": "^3.5"
22+
"phpstan/phpstan": "^0.12.89",
23+
"squizlabs/php_codesniffer": "^3.6"
2424
},
2525
"autoload": {
2626
"psr-4": {

0 commit comments

Comments
 (0)