├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src └── Geoly.php └── tests ├── Test.php ├── migrations └── 2020_04_26_000000_create_houses_test_table.php └── models └── House.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .idea 3 | composer.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axkuechler/laravel-geoly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axkuechler/laravel-geoly/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axkuechler/laravel-geoly/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axkuechler/laravel-geoly/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Geoly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axkuechler/laravel-geoly/HEAD/src/Geoly.php -------------------------------------------------------------------------------- /tests/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axkuechler/laravel-geoly/HEAD/tests/Test.php -------------------------------------------------------------------------------- /tests/migrations/2020_04_26_000000_create_houses_test_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axkuechler/laravel-geoly/HEAD/tests/migrations/2020_04_26_000000_create_houses_test_table.php -------------------------------------------------------------------------------- /tests/models/House.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axkuechler/laravel-geoly/HEAD/tests/models/House.php --------------------------------------------------------------------------------