| Package Data | |
|---|---|
| Maintainer Username: | xvize |
| Package Create Date: | 2015-05-08 |
| Package Last Update: | 2018-08-20 |
| Language: | PHP |
| License: | BSD |
| Last Refreshed: | 2025-12-14 03:08:04 |
| Package Statistics | |
|---|---|
| Total Downloads: | 17 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| 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'
]