Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
Added Laravel 6.0 support
Browse files Browse the repository at this point in the history
  • Loading branch information
vinkla committed Aug 28, 2019
1 parent b7df8a2 commit 9c4c72b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: php

php:
- 7.1
- 7.2
- 7.3

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## 4.0.0 (released 2019-08-28)

- Added Laravel 6.0 support
- Dropped Laravel 5.8 support

## 3.2.0 (released 2019-02-27)

- Added laravel 5.8 support
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,24 @@
}
],
"require": {
"php": "^7.1.3",
"facebook/graph-sdk": "^5.6",
"php": "^7.2",
"facebook/graph-sdk": "^5.7",
"graham-campbell/manager": "^4.2",
"illuminate/contracts": "5.8.*",
"illuminate/support": "5.8.*"
"illuminate/contracts": "^6.0",
"illuminate/support": "^6.0"
},
"require-dev": {
"graham-campbell/analyzer": "^2.1",
"graham-campbell/testbench": "^5.2",
"graham-campbell/analyzer": "^2.3",
"graham-campbell/testbench": "^5.3",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^7.5 || ^8.0"
"phpunit/phpunit": "^8.0"
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "3.2-dev"
"dev-master": "4.0-dev"
},
"laravel": {
"providers": [
Expand Down

0 comments on commit 9c4c72b

Please sign in to comment.