Skip to content

Commit df0cf38

Browse files
committed
Drop PHP <7.3 support
1 parent e90c52c commit df0cf38

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.scrutinizer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ checks:
2020
tools:
2121
external_code_coverage:
2222
timeout: 600
23-
runs: 4
23+
runs: 3
2424

2525
build:
2626
nodes:

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@ language: php
22

33
matrix:
44
include:
5-
- php: "7.2"
6-
env: LARAVEL_VERSION="^6.0" RUN_CS_FIXER=1
75
- php: "7.3"
8-
env: LARAVEL_VERSION="^7.0"
6+
env: LARAVEL_VERSION="^6.0" RUN_CS_FIXER=1
97
- php: "7.4"
10-
env: LARAVEL_VERSION="^8.0"
8+
env: LARAVEL_VERSION="^7.0"
119
- php: "8.0"
1210
env: LARAVEL_VERSION="^8.0"
1311

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1010

1111
* All classes now use strict typing [#93](https://github.com/swisnl/json-api-client/pull/93).
1212

13+
### Removed
14+
15+
* Dropped PHP <7.3 support.
16+
1317
## [2.0.0-beta] - 2021-07-01
1418

1519
Please see [UPGRADING](UPGRADING.md) for details on how to upgrade.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "library",
44
"description": "A PHP package for mapping remote JSON:API resources to Eloquent like models and collections.",
55
"require": {
6-
"php": ">=7.2.5",
6+
"php": "^7.3|^8.0",
77
"ext-json": "*",
88
"illuminate/contracts": "^6.0|^7.0|^8.0",
99
"php-http/discovery": "^1.0",

0 commit comments

Comments
 (0)