From ed3523c7648350aecb141b261c918028e1feb519 Mon Sep 17 00:00:00 2001 From: Anil Ahir Date: Tue, 17 Apr 2018 18:57:34 +0530 Subject: [PATCH 1/5] fix method access level for lumen 5.6 --- src/Database/Schema/Grammars/MySqlGrammar.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Database/Schema/Grammars/MySqlGrammar.php b/src/Database/Schema/Grammars/MySqlGrammar.php index df2ba1e09..0caf0e07d 100755 --- a/src/Database/Schema/Grammars/MySqlGrammar.php +++ b/src/Database/Schema/Grammars/MySqlGrammar.php @@ -18,7 +18,7 @@ class MySqlGrammar extends IlluminateMySqlGrammar * @param \Illuminate\Support\Fluent $column * @return string */ - protected function typePoint(Fluent $column) + public function typePoint(Fluent $column) { return $column->type; } @@ -29,7 +29,7 @@ protected function typePoint(Fluent $column) * @param \Illuminate\Support\Fluent $column * @return string */ - protected function typeMultipoint(Fluent $column) + public function typeMultipoint(Fluent $column) { return $column->type; } @@ -40,7 +40,7 @@ protected function typeMultipoint(Fluent $column) * @param \Illuminate\Support\Fluent $column * @return string */ - protected function typeLinestring(Fluent $column) + public function typeLinestring(Fluent $column) { return $column->type; } @@ -51,7 +51,7 @@ protected function typeLinestring(Fluent $column) * @param \Illuminate\Support\Fluent $column * @return string */ - protected function typePolygon(Fluent $column) + public function typePolygon(Fluent $column) { return $column->type; } @@ -62,7 +62,7 @@ protected function typePolygon(Fluent $column) * @param \Illuminate\Support\Fluent $column * @return string */ - protected function typeMultipolygon(Fluent $column) + public function typeMultipolygon(Fluent $column) { return $column->type; } @@ -73,7 +73,7 @@ protected function typeMultipolygon(Fluent $column) * @param \Illuminate\Support\Fluent $column * @return string */ - protected function typeGeometrycollection(Fluent $column) + public function typeGeometrycollection(Fluent $column) { return $column->type; } @@ -84,7 +84,7 @@ protected function typeGeometrycollection(Fluent $column) * @param \Illuminate\Support\Fluent $column * @return string */ - protected function typeGeometry(Fluent $column) + public function typeGeometry(Fluent $column) { return $column->type; } From 201876d4fb56e84afefe89f49dc275eccd40d781 Mon Sep 17 00:00:00 2001 From: Anil Ahir Date: Tue, 17 Apr 2018 19:12:00 +0530 Subject: [PATCH 2/5] composer.json updated --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 037a25601..fbe53ecaa 100755 --- a/composer.json +++ b/composer.json @@ -1,12 +1,12 @@ { - "name": "elevenlab/laravel-geo", + "name": "anilahir/laravel-geo", "description": "Spatial OGC objects integration for Laravel 5.*", "license": "GNU GPL v3.0", "keywords": ["geospatial", "laravel", "spatial", "geo"], "authors": [ { - "name": "Lorenzo Giustozzi", - "email": "giustozzi@lorenzo.im" + "name": "Anil Ahir", + "email": "anil220.306@gmail.com" } ], "minimum-stability": "stable", From cfae34b2ae2520cd4b8334ee5e3ae103bb297ac5 Mon Sep 17 00:00:00 2001 From: Anil Ahir Date: Tue, 17 Apr 2018 19:22:47 +0530 Subject: [PATCH 3/5] composer.json updated --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index fbe53ecaa..31fb532ec 100755 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "anilahir/laravel-geo", "description": "Spatial OGC objects integration for Laravel 5.*", - "license": "GNU GPL v3.0", + "license": "MIT", "keywords": ["geospatial", "laravel", "spatial", "geo"], "authors": [ { From e53a4d165ecbd610e92eb72e28175e0f24cb863a Mon Sep 17 00:00:00 2001 From: Anil Ahir Date: Wed, 18 Apr 2018 12:28:47 +0530 Subject: [PATCH 4/5] Revert "composer.json updated" This reverts commit cfae34b2ae2520cd4b8334ee5e3ae103bb297ac5. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 31fb532ec..fbe53ecaa 100755 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "anilahir/laravel-geo", "description": "Spatial OGC objects integration for Laravel 5.*", - "license": "MIT", + "license": "GNU GPL v3.0", "keywords": ["geospatial", "laravel", "spatial", "geo"], "authors": [ { From ba46cd22247d9b3357c8196ba5ae0e744a07fa1e Mon Sep 17 00:00:00 2001 From: Anil Ahir Date: Wed, 18 Apr 2018 12:29:00 +0530 Subject: [PATCH 5/5] Revert "composer.json updated" This reverts commit 201876d4fb56e84afefe89f49dc275eccd40d781. --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index fbe53ecaa..037a25601 100755 --- a/composer.json +++ b/composer.json @@ -1,12 +1,12 @@ { - "name": "anilahir/laravel-geo", + "name": "elevenlab/laravel-geo", "description": "Spatial OGC objects integration for Laravel 5.*", "license": "GNU GPL v3.0", "keywords": ["geospatial", "laravel", "spatial", "geo"], "authors": [ { - "name": "Anil Ahir", - "email": "anil220.306@gmail.com" + "name": "Lorenzo Giustozzi", + "email": "giustozzi@lorenzo.im" } ], "minimum-stability": "stable",