Skip to content

Commit

Permalink
Merge pull request #1 from laravie/master
Browse files Browse the repository at this point in the history
Add support for Laravel 7
  • Loading branch information
crynobone authored Feb 13, 2020
2 parents 1bdf0e8 + 80a0b10 commit 0f4689d
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
17 changes: 17 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- pinned
- security
# Label to use when marking an issue as stale
staleLabel: wontfix
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@ env:
matrix:
- laravel=^5.8
- laravel=^6.0
- laravel=^7.0
- setup=stable laravel=^5.8
- setup=stable laravel=^6.0
- setup=stable laravel=^7.0
- setup=lowest laravel=^5.8
- setup=lowest laravel=^6.0
- setup=lowest laravel=^7.0

before_install:
- composer config discard-changes true
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
],
"require": {
"php": ">=7.2",
"illuminate/database": "^5.8 || ^6.0",
"illuminate/support": "^5.8 || ^6.0"
"illuminate/database": "^5.8 || ^6.0 || ^7.0",
"illuminate/support": "^5.8 || ^6.0 || ^7.0"
},
"require-dev": {
"mockery/mockery": "^1.3.1",
"orchestra/testbench": "~3.8.5 || ^4.0.1",
"orchestra/testbench": "~3.8.5 || ^4.0.1 || ^5.0",
"phpunit/phpunit": "^8.4 || ^9.0"
},
"autoload": {
Expand Down

0 comments on commit 0f4689d

Please sign in to comment.