xxam / mailclientbundle
A complete mailclient bundle for Xxam
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:HTML
Type:symfony-bundle
Requires
- php: >=5.3.3
- php-imap/php-imap: ~2.0
- symfony/symfony: 2.7.*
- xxam/xxam: *
This package is not auto-updated.
Last update: 2024-12-25 11:05:09 UTC
README
Overview
License
This bundle is released under the MIT license
Installation
Step1: Using Composer
Add the following line to your composer.json require block:
// composer.json { // ... require: { // ... "xxam/mailclientbundle": "dev-master" } }
Then, you can install the new dependencies by running Composer's update
command from the directory where your composer.json
file is located:
$ php composer.phar update
Step 2: Register the Bundle
Modify your AppKernel with the following line:
<?php // in AppKernel::registerBundles() $bundles = array( // ... new Xxam\MailclientBundle\XxamMailclientBundle(), // ... );