mammutgroup / cedarmap
There is no license information available for the latest version (0.5.0) of this package.
cedar maps api package
0.5.0
2017-07-22 03:17 UTC
Requires
- php: >=5.6.0
This package is not auto-updated.
Last update: 2026-03-01 09:21:27 UTC
README
Requirements:
- php ~5.6.*
Instalation:
First add package name to your composer requirements
"require": { "mammutgroup/cedarmap": "dev" }
Next, update Composer from the Terminal:
composer update
Next, add your new provider to the providers array of config/app.php:
'providers' => [ // ... Cedar\CedarServiceProvider::class, // ... ]
Next, add class alias to the aliases array of config/app.php:
'aliases' => [ // ... 'Cedar' => Cedar\CedarFacade::class // ... ]
Finally, run:
php artisan vendor:publish
Ho to use:
$geocode = (new Cedar\Cedar('v1')) ->load('geocode') ->setParamByKey('title', 'ونک'); dd($geocode->getJson())