Skip to content

Commit

Permalink
Add Laravel 6.0 support
Browse files Browse the repository at this point in the history
  • Loading branch information
brendt committed Sep 4, 2019
1 parent f5a4c07 commit 99ec4f2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `laravel-csp` will be documented in this file

## 2.4.0 - 2019-09-04

- Add Laravel 6.0 support

## 2.3.0 - 2019-05-23

- add webrtc-src directive
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
],
"require": {
"php": "^7.2",
"illuminate/http": "~5.8.0",
"illuminate/support": "~5.8.0"
"illuminate/http": "~5.8.0|^6.0",
"illuminate/support": "~5.8.0|^6.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "~3.8.0",
"orchestra/testbench": "~3.8.0|^4.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
Expand Down

3 comments on commit 99ec4f2

@mfn
Copy link

@mfn mfn commented on 99ec4f2 Sep 4, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@brendt you also need to adapt orchestra, see #59

@brendt
Copy link
Contributor Author

@brendt brendt commented on 99ec4f2 Sep 4, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure what you mean?

@mfn
Copy link

@mfn mfn commented on 99ec4f2 Sep 4, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nevermind!

Please sign in to comment.