vanio / vanio-mailing-bundle
Easy peasy e-mail sending from Symfony applications.
Installs: 6 339
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 0
Open Issues: 6
Type:symfony-bundle
Requires
- php: ^7.0
- symfony/swiftmailer-bundle: ^2.4 || ^3.0 || ^4.0
- symfony/templating: ^3.3 || ^4.0
- symfony/twig-bundle: ^3.1 || ^4.0
- vanio/easy-mailer: ^0.1
Requires (Dev)
- phpunit/phpunit: ^5.5
- symfony/framework-bundle: ^3.1
- vanio/coding-standards: ^0.1
- dev-master / 0.1.x-dev
- dev-dependabot/composer/symfony/http-kernel-3.4.49
- dev-dependabot/composer/twig/twig-2.12.5
- dev-dependabot/composer/symfony/framework-bundle-3.4.47
- dev-sf5
- dev-dependabot/composer/symfony/http-foundation-3.4.47
- dev-dependabot/composer/symfony/dependency-injection-3.4.47
- dev-dependabot/composer/symfony/cache-3.4.47
This package is auto-updated.
Last update: 2024-10-30 01:48:19 UTC
README
Installation
Installation can be done as usually using composer.
composer require vanio/vanio-mailing-bundle
Next step is to register this bundle as well as bundles it depends on inside your AppKernel
.
// app/AppKernel.php // ... class AppKernel extends Kernel { // ... public function registerBundles(): array { $bundles = [ // ... new Symfony\Bundle\TwigBundle\TwigBundle, new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle, new Vanio\UserBundle\VanioMailingBundle, ]; // ... } }