Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bropwnz0r/yii2-mailwizz
https://github.com/bropwnz0r/yii2-mailwizz
mailwizz php yii2 yii2-extension
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bropwnz0r/yii2-mailwizz
- Owner: Bropwnz0r
- Created: 2016-05-11T07:54:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-02T06:07:55.000Z (about 8 years ago)
- Last Synced: 2024-10-12T15:23:25.984Z (26 days ago)
- Topics: mailwizz, php, yii2, yii2-extension
- Language: PHP
- Size: 222 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
mailwizz-php-sdk
================
#Install
> Note: Check the [composer.json](https://github.com/kartik-v/yii2-date-range/blob/master/composer.json) for this extension's requirements and dependencies.
Read this [web tip /wiki](http://webtips.krajee.com/setting-composer-minimum-stability-application/) on setting the `minimum-stability` settings for your application's composer.json.Either run
```
$ php composer.phar require yii2-mailwizz/mailwizz "dev-master"
```or add
```
"yii2-mailwizz/mailwizz": "dev-master"
```
to the ```require``` section of your `composer.json` file.#USAGE
Please see the examples folder for usage and available endpoints.#EXAMPLE Component
```
'ApiUrl',
'publicKey' => 'Pub_key',
'privateKey' => 'Private_key',
'components' => array(
'cache' => array(
'class' => File::class,
'filesPath' => dirname(__FILE__) . '/../MailWizzApi/Cache/data/cache', // make sure it is writable by webserver
)
),
]);
Base::setConfig($config);
}
}
```