xxam / mailclientbundle
为Xxam提供的完整邮件客户端包
dev-master / 2.0.x-dev
2015-10-21 14:34 UTC
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-10-02 10:02:54 UTC
README
概述
许可协议
本包遵循 MIT 许可协议
安装
步骤1:使用 Composer
将以下行添加到您的 composer.json 文件的 require 块中
// composer.json { // ... require: { // ... "xxam/mailclientbundle": "dev-master" } }
然后,您可以通过在存放 composer.json 文件的目录中运行 Composer 的 update 命令来安装新的依赖
$ php composer.phar update
步骤2:注册 Bundle
使用以下行修改您的 AppKernel
<?php // in AppKernel::registerBundles() $bundles = array( // ... new Xxam\MailclientBundle\XxamMailclientBundle(), // ... );