Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ workflows:
version: 2
build:
jobs:
- php73-laravel80
- php74-laravel80
- php73-laravel70
- php72-laravel70

jobs:
php72-laravel58-prefer-lowest:
Expand Down Expand Up @@ -75,6 +75,18 @@ jobs:
steps:
- install_and_test:
laravel: 6.0.*
php72-laravel70:
docker:
- image: circleci/php:7.2
steps:
- install_and_test:
laravel: 7.0.*
php73-laravel70:
docker:
- image: circleci/php:7.3
steps:
- install_and_test:
laravel: 7.0.*
php73-laravel80:
docker:
- image: circleci/php:7.3
Expand Down
4 changes: 4 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Make sure you check the below checklist

- [ ] Added your changes to `changelog.md` file
- [ ] Make sure you did all commit that fulfill symentic commit rules.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
# CHANGELOG

## 7.0.0

**Upgrade package to support laravel 7** [Ref](https://laravel.com/docs/7.x/upgrade)

- Upgrade packages to support laravel 7.
- php `^7.2.5` or higher
- array-to-xml `~2.14.0`,
- php-dot-notation `^2.x.dev`
- phpunit `8.5`


## 6.0.0

**Upgrade package to support laravel 6**

- Syantaxt upgraded to support laravel 6.*


## 0.1.30
- Fixed return type issue when json_decode fails. [Hotfix]

## 0.1.29
- Fixed json mapping condition for empty body. [Hotfix]

## 0.1.28
- Perform json mapping if body is given.

Expand Down