├── .github └── workflows │ └── component.yml ├── Assert.php ├── CHANGELOG.md ├── Collection.php ├── Dumper ├── AbstractArrayDumper.php ├── AbstractDumper.php ├── Dumper.php ├── GeoArray.php ├── GeoJson.php ├── Gpx.php ├── Kml.php ├── Wkb.php └── Wkt.php ├── Exception ├── CollectionIsEmpty.php ├── Exception.php ├── ExtensionNotLoaded.php ├── FunctionNotFound.php ├── InvalidArgument.php ├── InvalidCredentials.php ├── InvalidServerResponse.php ├── LogicException.php ├── OutOfBounds.php ├── ProviderNotRegistered.php ├── QuotaExceeded.php └── UnsupportedOperation.php ├── Formatter └── StringFormatter.php ├── Geocoder.php ├── GeocoderTrait.php ├── LICENSE ├── Location.php ├── Model ├── Address.php ├── AddressBuilder.php ├── AddressCollection.php ├── AdminLevel.php ├── AdminLevelCollection.php ├── Bounds.php ├── Coordinates.php └── Country.php ├── Provider ├── AbstractProvider.php └── Provider.php ├── ProviderAggregator.php ├── Query ├── GeocodeQuery.php ├── Query.php └── ReverseQuery.php ├── Readme.md ├── StatefulGeocoder.php ├── TimedGeocoder.php └── composer.json /.github/workflows/component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/.github/workflows/component.yml -------------------------------------------------------------------------------- /Assert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Assert.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Collection.php -------------------------------------------------------------------------------- /Dumper/AbstractArrayDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Dumper/AbstractArrayDumper.php -------------------------------------------------------------------------------- /Dumper/AbstractDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Dumper/AbstractDumper.php -------------------------------------------------------------------------------- /Dumper/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Dumper/Dumper.php -------------------------------------------------------------------------------- /Dumper/GeoArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Dumper/GeoArray.php -------------------------------------------------------------------------------- /Dumper/GeoJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Dumper/GeoJson.php -------------------------------------------------------------------------------- /Dumper/Gpx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Dumper/Gpx.php -------------------------------------------------------------------------------- /Dumper/Kml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Dumper/Kml.php -------------------------------------------------------------------------------- /Dumper/Wkb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Dumper/Wkb.php -------------------------------------------------------------------------------- /Dumper/Wkt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Dumper/Wkt.php -------------------------------------------------------------------------------- /Exception/CollectionIsEmpty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Exception/CollectionIsEmpty.php -------------------------------------------------------------------------------- /Exception/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Exception/Exception.php -------------------------------------------------------------------------------- /Exception/ExtensionNotLoaded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Exception/ExtensionNotLoaded.php -------------------------------------------------------------------------------- /Exception/FunctionNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Exception/FunctionNotFound.php -------------------------------------------------------------------------------- /Exception/InvalidArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Exception/InvalidArgument.php -------------------------------------------------------------------------------- /Exception/InvalidCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Exception/InvalidCredentials.php -------------------------------------------------------------------------------- /Exception/InvalidServerResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Exception/InvalidServerResponse.php -------------------------------------------------------------------------------- /Exception/LogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Exception/LogicException.php -------------------------------------------------------------------------------- /Exception/OutOfBounds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Exception/OutOfBounds.php -------------------------------------------------------------------------------- /Exception/ProviderNotRegistered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Exception/ProviderNotRegistered.php -------------------------------------------------------------------------------- /Exception/QuotaExceeded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Exception/QuotaExceeded.php -------------------------------------------------------------------------------- /Exception/UnsupportedOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Exception/UnsupportedOperation.php -------------------------------------------------------------------------------- /Formatter/StringFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Formatter/StringFormatter.php -------------------------------------------------------------------------------- /Geocoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Geocoder.php -------------------------------------------------------------------------------- /GeocoderTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/GeocoderTrait.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/LICENSE -------------------------------------------------------------------------------- /Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Location.php -------------------------------------------------------------------------------- /Model/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Model/Address.php -------------------------------------------------------------------------------- /Model/AddressBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Model/AddressBuilder.php -------------------------------------------------------------------------------- /Model/AddressCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Model/AddressCollection.php -------------------------------------------------------------------------------- /Model/AdminLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Model/AdminLevel.php -------------------------------------------------------------------------------- /Model/AdminLevelCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Model/AdminLevelCollection.php -------------------------------------------------------------------------------- /Model/Bounds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Model/Bounds.php -------------------------------------------------------------------------------- /Model/Coordinates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Model/Coordinates.php -------------------------------------------------------------------------------- /Model/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Model/Country.php -------------------------------------------------------------------------------- /Provider/AbstractProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Provider/AbstractProvider.php -------------------------------------------------------------------------------- /Provider/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Provider/Provider.php -------------------------------------------------------------------------------- /ProviderAggregator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/ProviderAggregator.php -------------------------------------------------------------------------------- /Query/GeocodeQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Query/GeocodeQuery.php -------------------------------------------------------------------------------- /Query/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Query/Query.php -------------------------------------------------------------------------------- /Query/ReverseQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Query/ReverseQuery.php -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/Readme.md -------------------------------------------------------------------------------- /StatefulGeocoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/StatefulGeocoder.php -------------------------------------------------------------------------------- /TimedGeocoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/TimedGeocoder.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geocoder-php/php-common/HEAD/composer.json --------------------------------------------------------------------------------