Skip to content

Commit

Permalink
Initialize repository
Browse files Browse the repository at this point in the history
  • Loading branch information
iwasherefirst2 committed Dec 20, 2019
0 parents commit 6da0b21
Show file tree
Hide file tree
Showing 7 changed files with 4,407 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
vendor/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This Laravel package provides a simple geographical distance search for your models.
37 changes: 37 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "bytefactor/laravel-geo-search",
"prefer-stable": true,
"authors": [
{
"name": "Ariel Vallese",
"email": "[email protected]",
"homepage": "https://alariva.com",
"role": "Developer"
},
{
"name": "Dr. Adam Nielsen",
"email": "[email protected]",
"homepage": "https://drnielsen.de",
"role": "Developer"
}
],
"require": {
"php": "~7",
"laravel/framework": "5.*||6.*"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"phpunit/php-code-coverage": "~6.0",
"orchestra/testbench": "~3.6"
},
"autoload": {
"psr-4": {
"ByteFactor\\GeoSearch\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ByteFactor\\GeoSearch\\Tests\\": "tests/"
}
}
}
Loading

0 comments on commit 6da0b21

Please sign in to comment.