File tree Expand file tree Collapse file tree 5 files changed +8
-9
lines changed Expand file tree Collapse file tree 5 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file. This project adheres to
3
3
[ Semantic Versioning] ( http://semver.org/ ) and [ this changelog format] ( http://keepachangelog.com/ ) .
4
4
5
- ## Unreleased
5
+ ## [ 1.0.0 ] - 2019-02-28
6
6
7
7
### Added
8
8
- Package now supports Laravel 5.8.
Original file line number Diff line number Diff line change @@ -60,10 +60,10 @@ A demo application is available at [here](https://github.com/cloudcreativity/dem
60
60
61
61
| Laravel | This Package | EOL? |
62
62
| --- | --- | --- |
63
- | 5.8.* | ` dev-laravel-5.8 ` | - |
64
- | 5.7.* | ` 1.0.0-rc.2 ` | - |
65
- | 5.6.* | ` 1.0.0-rc.2 ` | - |
66
- | 5.5.* | ` 1.0.0-rc.2 ` | - |
63
+ | 5.8.* | ` ^1.0 ` | - |
64
+ | 5.7.* | ` ^ 1.0` | - |
65
+ | 5.6.* | ` ^ 1.0` | - |
66
+ | 5.5.* | ` ^ 1.0` | - |
67
67
| 5.4.* | ` 1.0.0-beta.3 ` | EOL |
68
68
69
69
Make sure you consult the [ Upgrade Guide] ( http://laravel-json-api.readthedocs.io/en/latest/upgrade/ )
Original file line number Diff line number Diff line change 3
3
Install using [ Composer] ( http://getcomposer.org ) :
4
4
5
5
``` bash
6
- $ composer require cloudcreativity/laravel-json-api:1.0.0-rc.2
7
- $ composer require --dev cloudcreativity/json-api-testing:1.0.0-rc.1
6
+ $ composer require cloudcreativity/laravel-json-api
7
+ $ composer require --dev cloudcreativity/json-api-testing
8
8
```
9
9
10
10
This package's service provider and facade will be automatically added using package discovery. You will
Original file line number Diff line number Diff line change 1
1
# Upgrade Guide
2
2
3
- ## 1.0.0-rc.1 to 1.0.0-rc.2
3
+ ## 1.0.0-rc.* to ^ 1.0
4
4
5
5
No changes are required to upgrade.
6
6
Original file line number Diff line number Diff line change 20
20
use CloudCreativity \LaravelJsonApi \Contracts \Decoder \DecoderInterface ;
21
21
use CloudCreativity \LaravelJsonApi \Decoder \JsonApiDecoder ;
22
22
use CloudCreativity \LaravelJsonApi \Exceptions \RuntimeException ;
23
- use Illuminate \Support \Collection ;
24
23
use Neomerx \JsonApi \Contracts \Http \Headers \MediaTypeInterface ;
25
24
use Neomerx \JsonApi \Http \Headers \MediaType ;
26
25
You can’t perform that action at this time.
0 commit comments