Package Data | |
---|---|
Maintainer Username: | xvize |
Package Create Date: | 2015-05-08 |
Package Last Update: | 2018-08-20 |
Language: | PHP |
License: | BSD |
Last Refreshed: | 2024-11-26 15:08:51 |
Package Statistics | |
---|---|
Total Downloads: | 17 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Streak CRM Laravel API
"require": {
"xvize/streak": "dev-master"
}
Next, update config/streak.php
with your Streak API key. You are better off using Laravel env file to store you key.
'api_key' => env('STREAK_KEY')
Now you are ready to register the service provider and facade if you wish config/app.php
.
'providers' => [
......
'Xvize\Streak\StreakServiceProvider'
],
'aliases' => [
......
'Streak' => 'Xvize\Streak\StreakFacade'
]