Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sevenfloor/yii2-sendpulse
Client for Sendpulse
https://github.com/sevenfloor/yii2-sendpulse
api-client composer sendpulse yii2 yii2-component
Last synced: about 1 month ago
JSON representation
Client for Sendpulse
- Host: GitHub
- URL: https://github.com/sevenfloor/yii2-sendpulse
- Owner: SevenFloor
- Created: 2016-04-14T14:31:43.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-09-11T06:44:05.000Z (over 5 years ago)
- Last Synced: 2024-11-13T04:09:13.956Z (about 2 months ago)
- Topics: api-client, composer, sendpulse, yii2, yii2-component
- Language: PHP
- Size: 8.79 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Client for service sendpulse
============================
Client for service sendpulseThis API client base on official API [client](https://github.com/sendpulse/sendpulse-rest-api-php)
[![Latest Stable Version](https://poser.pugx.org/sevenfloor/yii2-sendpulse/v/stable)](https://packagist.org/packages/sevenfloor/yii2-sendpulse) [![Total Downloads](https://poser.pugx.org/sevenfloor/yii2-sendpulse/downloads)](https://packagist.org/packages/sevenfloor/yii2-sendpulse) [![Latest Unstable Version](https://poser.pugx.org/sevenfloor/yii2-sendpulse/v/unstable)](https://packagist.org/packages/sevenfloor/yii2-sendpulse) [![License](https://poser.pugx.org/sevenfloor/yii2-sendpulse/license)](https://packagist.org/packages/sevenfloor/yii2-sendpulse)
Installation
------------The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
Either run
```
php composer.phar require --prefer-dist sevenfloor/yii2-sendpulse "*"
```or add
```
"sevenfloor/yii2-sendpulse": "*"
```to the require section of your `composer.json` file.
Usage
-----Add this to your main configuration's components array:
```php
'sendpulse' => [
'class' => \sevenfloor\sendpulse\SendPulse::className(),
'userId' => 'your_userId_',
'secret' => 'your_secret',
'storageType' => 'session'
],
```