├── .codecov.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpstan-baseline.neon ├── phpstan.neon ├── phpunit.xml.dist └── src ├── Bridge └── Zenstruck │ └── Browser │ ├── MailerComponent.php │ └── MailerExtension.php ├── InteractsWithMailer.php ├── SentEmailMixin.php ├── SentEmails.php ├── TestEmail.php ├── TestMailer.php └── ZenstruckMailerTestBundle.php /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/phpstan-baseline.neon -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Bridge/Zenstruck/Browser/MailerComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/src/Bridge/Zenstruck/Browser/MailerComponent.php -------------------------------------------------------------------------------- /src/Bridge/Zenstruck/Browser/MailerExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/src/Bridge/Zenstruck/Browser/MailerExtension.php -------------------------------------------------------------------------------- /src/InteractsWithMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/src/InteractsWithMailer.php -------------------------------------------------------------------------------- /src/SentEmailMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/src/SentEmailMixin.php -------------------------------------------------------------------------------- /src/SentEmails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/src/SentEmails.php -------------------------------------------------------------------------------- /src/TestEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/src/TestEmail.php -------------------------------------------------------------------------------- /src/TestMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/src/TestMailer.php -------------------------------------------------------------------------------- /src/ZenstruckMailerTestBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenstruck/mailer-test/HEAD/src/ZenstruckMailerTestBundle.php --------------------------------------------------------------------------------