Skip to content

Commit

Permalink
Merge pull request #136 from CasperLaiTW/laravel-6.0-7.0
Browse files Browse the repository at this point in the history
Support laravel 7.0
  • Loading branch information
overtrue authored Apr 13, 2020
2 parents b8450c3 + a1bcac7 commit 34de296
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}
],
"require": {
"laravel/framework": "^5.5"
"laravel/framework": "^5.5|~6.0|~7.0"
},
"autoload": {
"psr-4": {
Expand All @@ -22,7 +22,6 @@
}
},
"require-dev": {
"laravel/framework": "^5.5",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "~8.0",
"orchestra/testbench": "^3.7",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ public function up()
*/
public function down()
{
Schema::dropIfExists(config('follow.followings_table'));
Schema::dropIfExists(config('follow.followings_table', 'user_follower'));
}
}

0 comments on commit 34de296

Please sign in to comment.