├── .gitignore ├── .travis.yml ├── Command └── LocateCommand.php ├── DependencyInjection ├── Configuration.php ├── LocatorCompilerPass.php └── MeupGeoLocationExtension.php ├── Domain ├── Balancer.php ├── BalancerFactory.php ├── BalancerFactoryInterface.php ├── BalancerInterface.php └── BalancingStrategy │ ├── RandomStrategy.php │ └── StrategyInterface.php ├── Factory ├── AddressFactory.php ├── AddressFactoryInterface.php ├── CoordinatesFactory.php ├── CoordinatesFactoryInterface.php ├── Factory.php └── FactoryInterface.php ├── Handler ├── DistanceCalculator.php ├── DistanceCalculatorInterface.php ├── Locator.php ├── LocatorInterface.php ├── LocatorManager.php ├── LocatorManagerInterface.php └── LocatorServiceInterface.php ├── Hydrator ├── Hydrator.php └── HydratorInterface.php ├── LICENSE ├── MeupGeoLocationBundle.php ├── Model ├── Address.php ├── AddressInterface.php ├── Coordinates.php ├── CoordinatesInterface.php ├── Location.php └── LocationInterface.php ├── Provider ├── Bing │ ├── Hydrator.php │ └── Locator.php ├── Google │ ├── Hydrator.php │ └── Locator.php ├── Heredotcom │ ├── Hydrator.php │ └── Locator.php ├── Mapquest │ ├── Hydrator.php │ └── Locator.php ├── Nominatim │ ├── Hydrator.php │ └── Locator.php └── Yandex │ ├── Hydrator.php │ └── Locator.php ├── README.md ├── Resources └── doc │ ├── configuration.md │ ├── custom-balancer.md │ ├── custom-hydrator.md │ ├── custom-model.md │ ├── custom-provider.md │ ├── example.md │ └── provider │ ├── bing.md │ ├── google.md │ ├── heredotcom.md │ ├── mapquest.md │ ├── nominatim.md │ └── yandex.md ├── Tests ├── DependencyInjection │ ├── LocatorCompilerPassTest.php │ └── MeupGeoLocationExtensionTest.php ├── Domain │ └── BalancerTest.php ├── Factory │ ├── AddressFactoryTest.php │ ├── BalancerFactoryTest.php │ └── CoordinatesFactoryTest.php ├── Handler │ ├── DistanceCalculatorTest.php │ ├── LocatorManagerTest.php │ └── LocatorTest.php ├── MeupGeoLocationBundleTest.php ├── Model │ ├── AddressTest.php │ └── CoordinatesTest.php └── Provider │ ├── Bing │ ├── LocatorTest.php │ ├── get-address-result.json │ └── get-coordinates-result.json │ ├── Google │ ├── LocatorTest.php │ ├── get-address-result.json │ ├── get-coordinates-result.json │ └── zero-results.json │ ├── Heredotcom │ ├── LocatorTest.php │ ├── get-address-result.json │ ├── get-coordinates-result.json │ ├── low-relevance.json │ └── zero-results.json │ ├── LocatorTestCase.php │ ├── Mapquest │ ├── LocatorTest.php │ ├── get-address-result.json │ ├── get-coordinates-result.json │ └── zero-results.json │ ├── Nominatim │ ├── LocatorTest.php │ ├── get-address-result.json │ ├── get-coordinates-result.json │ └── zero-results.json │ └── Yandex │ ├── LocatorTest.php │ ├── get-address-result.json │ ├── get-coordinates-result.json │ └── zero-results.json ├── composer.json ├── composer.lock ├── phpunit.xml.dist └── sami.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /Command/LocateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Command/LocateCommand.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/LocatorCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/DependencyInjection/LocatorCompilerPass.php -------------------------------------------------------------------------------- /DependencyInjection/MeupGeoLocationExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/DependencyInjection/MeupGeoLocationExtension.php -------------------------------------------------------------------------------- /Domain/Balancer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Domain/Balancer.php -------------------------------------------------------------------------------- /Domain/BalancerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Domain/BalancerFactory.php -------------------------------------------------------------------------------- /Domain/BalancerFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Domain/BalancerFactoryInterface.php -------------------------------------------------------------------------------- /Domain/BalancerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Domain/BalancerInterface.php -------------------------------------------------------------------------------- /Domain/BalancingStrategy/RandomStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Domain/BalancingStrategy/RandomStrategy.php -------------------------------------------------------------------------------- /Domain/BalancingStrategy/StrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Domain/BalancingStrategy/StrategyInterface.php -------------------------------------------------------------------------------- /Factory/AddressFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Factory/AddressFactory.php -------------------------------------------------------------------------------- /Factory/AddressFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Factory/AddressFactoryInterface.php -------------------------------------------------------------------------------- /Factory/CoordinatesFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Factory/CoordinatesFactory.php -------------------------------------------------------------------------------- /Factory/CoordinatesFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Factory/CoordinatesFactoryInterface.php -------------------------------------------------------------------------------- /Factory/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Factory/Factory.php -------------------------------------------------------------------------------- /Factory/FactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Factory/FactoryInterface.php -------------------------------------------------------------------------------- /Handler/DistanceCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Handler/DistanceCalculator.php -------------------------------------------------------------------------------- /Handler/DistanceCalculatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Handler/DistanceCalculatorInterface.php -------------------------------------------------------------------------------- /Handler/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Handler/Locator.php -------------------------------------------------------------------------------- /Handler/LocatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Handler/LocatorInterface.php -------------------------------------------------------------------------------- /Handler/LocatorManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Handler/LocatorManager.php -------------------------------------------------------------------------------- /Handler/LocatorManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Handler/LocatorManagerInterface.php -------------------------------------------------------------------------------- /Handler/LocatorServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Handler/LocatorServiceInterface.php -------------------------------------------------------------------------------- /Hydrator/Hydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Hydrator/Hydrator.php -------------------------------------------------------------------------------- /Hydrator/HydratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Hydrator/HydratorInterface.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /MeupGeoLocationBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/MeupGeoLocationBundle.php -------------------------------------------------------------------------------- /Model/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Model/Address.php -------------------------------------------------------------------------------- /Model/AddressInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Model/AddressInterface.php -------------------------------------------------------------------------------- /Model/Coordinates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Model/Coordinates.php -------------------------------------------------------------------------------- /Model/CoordinatesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Model/CoordinatesInterface.php -------------------------------------------------------------------------------- /Model/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Model/Location.php -------------------------------------------------------------------------------- /Model/LocationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Model/LocationInterface.php -------------------------------------------------------------------------------- /Provider/Bing/Hydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Provider/Bing/Hydrator.php -------------------------------------------------------------------------------- /Provider/Bing/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Provider/Bing/Locator.php -------------------------------------------------------------------------------- /Provider/Google/Hydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Provider/Google/Hydrator.php -------------------------------------------------------------------------------- /Provider/Google/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Provider/Google/Locator.php -------------------------------------------------------------------------------- /Provider/Heredotcom/Hydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Provider/Heredotcom/Hydrator.php -------------------------------------------------------------------------------- /Provider/Heredotcom/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Provider/Heredotcom/Locator.php -------------------------------------------------------------------------------- /Provider/Mapquest/Hydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Provider/Mapquest/Hydrator.php -------------------------------------------------------------------------------- /Provider/Mapquest/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Provider/Mapquest/Locator.php -------------------------------------------------------------------------------- /Provider/Nominatim/Hydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Provider/Nominatim/Hydrator.php -------------------------------------------------------------------------------- /Provider/Nominatim/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Provider/Nominatim/Locator.php -------------------------------------------------------------------------------- /Provider/Yandex/Hydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Provider/Yandex/Hydrator.php -------------------------------------------------------------------------------- /Provider/Yandex/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Provider/Yandex/Locator.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/doc/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Resources/doc/configuration.md -------------------------------------------------------------------------------- /Resources/doc/custom-balancer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Resources/doc/custom-balancer.md -------------------------------------------------------------------------------- /Resources/doc/custom-hydrator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Resources/doc/custom-hydrator.md -------------------------------------------------------------------------------- /Resources/doc/custom-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Resources/doc/custom-model.md -------------------------------------------------------------------------------- /Resources/doc/custom-provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Resources/doc/custom-provider.md -------------------------------------------------------------------------------- /Resources/doc/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Resources/doc/example.md -------------------------------------------------------------------------------- /Resources/doc/provider/bing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Resources/doc/provider/bing.md -------------------------------------------------------------------------------- /Resources/doc/provider/google.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Resources/doc/provider/google.md -------------------------------------------------------------------------------- /Resources/doc/provider/heredotcom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Resources/doc/provider/heredotcom.md -------------------------------------------------------------------------------- /Resources/doc/provider/mapquest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Resources/doc/provider/mapquest.md -------------------------------------------------------------------------------- /Resources/doc/provider/nominatim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Resources/doc/provider/nominatim.md -------------------------------------------------------------------------------- /Resources/doc/provider/yandex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Resources/doc/provider/yandex.md -------------------------------------------------------------------------------- /Tests/DependencyInjection/LocatorCompilerPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/DependencyInjection/LocatorCompilerPassTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/MeupGeoLocationExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/DependencyInjection/MeupGeoLocationExtensionTest.php -------------------------------------------------------------------------------- /Tests/Domain/BalancerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Domain/BalancerTest.php -------------------------------------------------------------------------------- /Tests/Factory/AddressFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Factory/AddressFactoryTest.php -------------------------------------------------------------------------------- /Tests/Factory/BalancerFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Factory/BalancerFactoryTest.php -------------------------------------------------------------------------------- /Tests/Factory/CoordinatesFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Factory/CoordinatesFactoryTest.php -------------------------------------------------------------------------------- /Tests/Handler/DistanceCalculatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Handler/DistanceCalculatorTest.php -------------------------------------------------------------------------------- /Tests/Handler/LocatorManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Handler/LocatorManagerTest.php -------------------------------------------------------------------------------- /Tests/Handler/LocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Handler/LocatorTest.php -------------------------------------------------------------------------------- /Tests/MeupGeoLocationBundleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/MeupGeoLocationBundleTest.php -------------------------------------------------------------------------------- /Tests/Model/AddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Model/AddressTest.php -------------------------------------------------------------------------------- /Tests/Model/CoordinatesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Model/CoordinatesTest.php -------------------------------------------------------------------------------- /Tests/Provider/Bing/LocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Bing/LocatorTest.php -------------------------------------------------------------------------------- /Tests/Provider/Bing/get-address-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Bing/get-address-result.json -------------------------------------------------------------------------------- /Tests/Provider/Bing/get-coordinates-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Bing/get-coordinates-result.json -------------------------------------------------------------------------------- /Tests/Provider/Google/LocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Google/LocatorTest.php -------------------------------------------------------------------------------- /Tests/Provider/Google/get-address-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Google/get-address-result.json -------------------------------------------------------------------------------- /Tests/Provider/Google/get-coordinates-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Google/get-coordinates-result.json -------------------------------------------------------------------------------- /Tests/Provider/Google/zero-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Google/zero-results.json -------------------------------------------------------------------------------- /Tests/Provider/Heredotcom/LocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Heredotcom/LocatorTest.php -------------------------------------------------------------------------------- /Tests/Provider/Heredotcom/get-address-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Heredotcom/get-address-result.json -------------------------------------------------------------------------------- /Tests/Provider/Heredotcom/get-coordinates-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Heredotcom/get-coordinates-result.json -------------------------------------------------------------------------------- /Tests/Provider/Heredotcom/low-relevance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Heredotcom/low-relevance.json -------------------------------------------------------------------------------- /Tests/Provider/Heredotcom/zero-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Heredotcom/zero-results.json -------------------------------------------------------------------------------- /Tests/Provider/LocatorTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/LocatorTestCase.php -------------------------------------------------------------------------------- /Tests/Provider/Mapquest/LocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Mapquest/LocatorTest.php -------------------------------------------------------------------------------- /Tests/Provider/Mapquest/get-address-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Mapquest/get-address-result.json -------------------------------------------------------------------------------- /Tests/Provider/Mapquest/get-coordinates-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Mapquest/get-coordinates-result.json -------------------------------------------------------------------------------- /Tests/Provider/Mapquest/zero-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Mapquest/zero-results.json -------------------------------------------------------------------------------- /Tests/Provider/Nominatim/LocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Nominatim/LocatorTest.php -------------------------------------------------------------------------------- /Tests/Provider/Nominatim/get-address-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Nominatim/get-address-result.json -------------------------------------------------------------------------------- /Tests/Provider/Nominatim/get-coordinates-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Nominatim/get-coordinates-result.json -------------------------------------------------------------------------------- /Tests/Provider/Nominatim/zero-results.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /Tests/Provider/Yandex/LocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Yandex/LocatorTest.php -------------------------------------------------------------------------------- /Tests/Provider/Yandex/get-address-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Yandex/get-address-result.json -------------------------------------------------------------------------------- /Tests/Provider/Yandex/get-coordinates-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Yandex/get-coordinates-result.json -------------------------------------------------------------------------------- /Tests/Provider/Yandex/zero-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/Tests/Provider/Yandex/zero-results.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /sami.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1001Pharmacies/geolocation-bundle/HEAD/sami.php --------------------------------------------------------------------------------