8000 [Feature] Update dependencies and drop support for PHP 5.5 · GIANTCRAB/laravel-json-api@07ad2ca · GitHub
[go: up one dir, main page]

Skip to content

Commit 07ad2ca

Browse files
committed
[Feature] Update dependencies and drop support for PHP 5.5
1 parent 23e4fbc commit 07ad2ca

File tree

3 files changed

+19
-10
lines changed

3 files changed

+19
-10
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ charset = utf-8
77
trim_trailing_whitespace = true
88
insert_final_newline = true
99

10-
[*.{php,stub}]
10+
[*.{php,stub,json}]
1111
indent_size = 4
1212

1313
[*.md]

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
All notable changes to this project will be documented in this file. This project adheres to
33
[Semantic Versioning](http://semver.org/) and [this changelog format](http://keepachangelog.com/).
44

5+
## Unreleased
6+
7+
### Added
8+
- Added support for Laravel 5.4. However, consuming applications will need to use the Browserkit testing package
9+
to continue to use the JSON API testing suite.
10+
11+
### Removed
12+
- Dropped support for PHP 5.5
13+
514
## [0.5.4] - 2016-12-21
615

716
### Fixed

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@
2222
}
2323
],
2424
"require": {
25-
"php": ">=5.5.0",
25+
"php": "^5.6|^7.0",
2626
"laravel/framework": "5.1.*|5.2.*|5.3.*|5.4.*",
27-
"neomerx/json-api": "^0.8.9",
28-
"cloudcreativity/json-api": "^0.6.0",
29-
"symfony/psr-http-message-bridge": "^0.2.0|^1.0",
27+
"cloudcreativity/json-api": "^0.7",
28+
"symfony/psr-http-message-bridge": "^1.0",
3029
"zendframework/zend-diactoros": "^1.3"
3130
},
3231
"require-dev": {
33-
"phpunit/phpunit": "^4.7"
32+
"phpunit/phpunit": "^5.7"
3433
},
35-
"minimum-stability": "stable",
34+
"minimum-stability": "dev",
35+
"prefer-stable": true,
3636
"autoload": {
3737
"psr-4": {
3838
"CloudCreativity\\LaravelJsonApi\\": "src/"
@@ -44,8 +44,8 @@
4444
}
4545
},
4646
"extra": {
47-
"branch-alias": {
48-
"dev-develop": "0.6.x-dev"
49-
}
47+
"branch-alias": {
48+
"dev-develop": "0.6.x-dev"
49+
}
5050
}
5151
}

0 commit comments

Comments
 (0)
0