Download the PHP package notifea/notifea-php-nette without Composer
On this page you can find all versions of the php package notifea/notifea-php-nette. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download notifea/notifea-php-nette
More information about notifea/notifea-php-nette
Files in notifea/notifea-php-nette
Package notifea-php-nette
Short Description Nette wrapper for PHP language for Notifea services.
License MIT
Homepage https://notifea.com
Informations about the package notifea-php-nette
notifea-php-nette
Nette wrapper for PHP language for Notifea services.
Notifea provides clients very user-friendly way of sending transactional emails and sms to their users.
This package is a Nette wrapper for Notifea PHP package.
Minimum requirements
This package will require you to use:
- PHP 7.0 or higher
- guzzlehttp/guzzle 6.0 or higher
- ext-json
Installation
To install the SDK you need to be using Composer in your project. To install it please see the docs.
After you installed Composer install the SDK
Start by registering Notifea\Nette\DI\NotifeaExtension
in your config neon
file
You are only required to set authorization
config key. Value can be generated in
access-tokens section.
There are few more optional parameters you can specify.
Versions
This package currently supports:
- nette 2.4 using tag ^0.0.1
- nette 3.0 using tag ^1.0.0
To add support for other versions please get in touch with us.
Usage
This packages provides a convenient dependency injection layer
for Notifea\Services\EmailService
, Notifea\Services\SmsService
and Notifea\Services\SmsSenderService
implemented in our
core Notifea PHP package so they can be easily used anywhere in
your Nette application.
One could inject them like this:
EmailService
contains these methods:
- getEmails()
- getEmail(string $emailUuid)
- sendEmail(Email $email)
- deleteEmail(string $emailUuid)
SmsService
contains these methods:
- getSmss()
- getSms(string $smsUuid)
- sendSms(Sms $sms)
- deleteSms(string $smsUuid)
SmsSenderService
contains these methods:
- getSmsSenders()
- getSmsSender(string $smsSenderUuid)
- createSmsSender(SmsSender $smsSender)
- updateSmsSender(SmsSender $smsSender)
- deleteSmsSender(string $smsSenderUuid)
To find more detailed documentation about each method, check out our core Notifea PHP package
Community
Contributing
Dependencies are managed through composer
:
Tests can be run via phpunit: