anton-kozlov / locations
A 8Bit test bundle
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 3
pkg:composer/anton-kozlov/locations
Requires
- php: ~7.1
- guzzlehttp/guzzle: ^6.3
- jms/serializer: ^1.10
- justblackbird/jms-serializer-strict-json: ^0.2.0
This package is not auto-updated.
Last update: 2025-10-04 22:00:16 UTC
README
- composer require composer require anton-kozlov/locations
Usage example:
class DefaultController extends Controller
{
/**
* @Route("/test")
*/
public function pushAction(
\Test\LocationsBundle\Service\DataProviderService $dataProviderService
)
{
try {
$locations = $dataProviderService->getLocations('example.com');
} catch (\Test\LocationsBundle\Exception\LocationsExceptionInterface $exception) {
// Handle exceptions...
}
}