Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
pierot committed Mar 1, 2018
1 parent ce23541 commit a52b4bb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions composer.json
Expand Up @@ -15,11 +15,15 @@
}
],
"require": {
"php": ">=5.6.4",
"laravel/framework": ">=5.2.0"
"php": ">=7.0",
"illuminate/bus": "~5.5.0|~5.6.0",
"illuminate/console": "~5.5.0|~5.6.0",
"illuminate/database": "~5.5.0|~5.6.0",
"illuminate/support": "~5.5.0|~5.6.0",
"illuminate/pipeline": "~5.5.0|~5.6.0"
},
"require-dev": {
"mockery/mockery": "~0.9",
"mockery/mockery": "~1.0",
"orchestra/database": "~3.0",
"orchestra/testbench": "~3.0",
"phpunit/phpunit": "~6.0"
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Expand Up @@ -60,7 +60,7 @@ protected function resetDatabase()

protected function createActivityLogTable()
{
include_once '__DIR__' . '/../src/migrations/2017_06_03_133219_create_activity_log_table.php';
include_once '__DIR__' . '/../database/migrations/2017_06_03_133219_create_activity_log_table.php';

(new \CreateActivityLogTable())->up();
}
Expand Down

0 comments on commit a52b4bb

Please sign in to comment.