Skip to content

Commit

Permalink
Merge pull request #127 from grimzy/laravel-7-mysql-5.6
Browse files Browse the repository at this point in the history
Port: Laravel 7 Support (MySQL 5.6)
  • Loading branch information
grimzy authored Mar 7, 2020
2 parents f3429eb + a51d5d3 commit eeaa4af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
],
"require": {
"php": ">=5.5.9",
"illuminate/database": "^5.2||^6.0",
"illuminate/database": "^5.2||^6.0||^7.0",
"geo-io/wkb-parser": "^1.0",
"jmikola/geojson": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8||~5.7",
"mockery/mockery": "^0.9.9",
"laravel/laravel": "^5.2||^6.0",
"laravel/laravel": "^5.2||^6.0||^7.0",
"codeclimate/php-test-reporter": "dev-master",
"doctrine/dbal": "^2.5",
"laravel/browser-kit-testing": "^2.0"
Expand Down
4 changes: 3 additions & 1 deletion src/Eloquent/SpatialTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ protected function newBaseQueryBuilder()
$connection = $this->getConnection();

return new BaseBuilder(
$connection, $connection->getQueryGrammar(), $connection->getPostProcessor()
$connection,
$connection->getQueryGrammar(),
$connection->getPostProcessor()
);
}

Expand Down

0 comments on commit eeaa4af

Please sign in to comment.