allmega / message
适用于Allmega CMS的消息管理系统
v1.0.0
2024-09-19 13:08 UTC
Requires
- php: ^8.2
- ext-dom: *
- ext-json: *
- allmega/blog: ^1.0
This package is auto-updated.
Last update: 2024-09-19 13:08:53 UTC
README
请确保已全局安装Composer,如Composer文档中的安装章节所述。
使用Symfony Flex的应用程序
打开命令行,进入您的项目目录并执行
$ composer require allmega/message
不使用Symfony Flex的应用程序
步骤 1:下载Bundle
打开命令行,进入您的项目目录并执行以下命令以下载此bundle的最新稳定版本
$ composer require allmega/message
步骤 2:启用Bundle
然后,通过将其添加到项目config/bundles.php
文件中注册的bundle列表中来启用该bundle
// config/bundles.php
return [
// ...
Allmega\MessageBundle\AllmegaMessageBundle::class => ['all' => true],
];
步骤 3:注册Bundle
如果之前未安装bundle allmega/blog
,请参阅此bundle的安装说明
随后打开命令行,进入您的项目目录并执行
$ yarn encore prod