serato/sendgrid

There is no license information available for the latest version (v3.0.14) of this package.

A library for sending transactional emails using SendGrid


README

Latest Stable Version

A PHP library for sending transactional emails using SendGrid

Adding to a project via composer.json

To include this library in a PHP project add the following line to the project's composer.json file in the require section:

{
	"require": {
		"serato/serato-sendgrid": "dev-master"
	}
}

See Packagist for a list of all available versions.

Requirements

This library requires PHP 7.1 or greater.

Style guide

Please ensure code adheres to the PHP-FIG PSR-2 Coding Style Guide

Use PHP_CodeSniffer to validate your code against coding standards:

$ ./vendor/bin/phpcs

PHPStan

Use PHPStan for static code analysis:

$ vendor/bin/phpstan analyse

Unit tests

Configuration for PHPUnit is defined within phpunit.xml.

To run tests:

$ php vendor/bin/phpunit