backtheweb / laravel-geocode
There is no license information available for the latest version (0.0.1) of this package.
0.0.1
2023-06-20 11:19 UTC
Requires (Dev)
- guzzlehttp/guzzle: ^7.2
- orchestra/testbench: ^8.0
- phpunit/phpunit: ^10.1
README
Installation
Install the package via composer:
$ composer require backtheweb/laravel-geocode:dev-main
Publish the config file:
$ php artisan vendor:publish --provider="Backtheweb\\Geocode\\GeocodeServiceProvider" --tag="config"
To start developing, run composer install on the package
$ cd {{ path }}
$ composer install
Run tests
Before running the tests, add the following to phpunit.xml file:
<env name="GOOGLE_API_KEY" value="YOUR_API_KEY"/>
replace YOUR_API_KEY with your Google API key.
Then run the tests:
$ ./vendor/bin/phpunit