machii / laravel-surveygizmo
Surveygizmo API Implementation
v1.2.4.1
2017-09-19 02:02 UTC
Requires
- php: >=5.6
Requires (Dev)
- phpunit/phpunit: ^4.8 || ^5.0
This package is auto-updated.
Last update: 2025-01-26 07:59:52 UTC
README
A Laravel SurveyGizmo API implementation.
Installation
Run this command, in able to install the package
composer require machiii\laravel-surveygizmo
Service Provider
Add this to your config/app.php
'providers' => [
SurveyGizmo\SurveyGizmoProvider::class,
]
and for the facade aliases
'aliases' => [
'SurveyGizmo' => SurveyGizmo\SurveyGizmoFacade::class,
]