├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml └── src ├── Config └── addressval.php ├── Examples └── google-output.png ├── Lib ├── Checker.php ├── Contract.php └── drivers │ └── GeoogleGeocode.php └── ValidatorServiceProvider.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/places-validation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/places-validation/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/places-validation/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/places-validation/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Config/addressval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/places-validation/HEAD/src/Config/addressval.php -------------------------------------------------------------------------------- /src/Examples/google-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/places-validation/HEAD/src/Examples/google-output.png -------------------------------------------------------------------------------- /src/Lib/Checker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/places-validation/HEAD/src/Lib/Checker.php -------------------------------------------------------------------------------- /src/Lib/Contract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/places-validation/HEAD/src/Lib/Contract.php -------------------------------------------------------------------------------- /src/Lib/drivers/GeoogleGeocode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/places-validation/HEAD/src/Lib/drivers/GeoogleGeocode.php -------------------------------------------------------------------------------- /src/ValidatorServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/places-validation/HEAD/src/ValidatorServiceProvider.php --------------------------------------------------------------------------------