ezsystems / ezplatform-query-language
dev-master / 1.0.x-dev
2020-04-25 19:36 UTC
Requires
- php: ^7.3
- ext-mbstring: *
- antlr/antlr4-php-runtime: ^0.3.0
- ezsystems/ezplatform-kernel: ^1.0
Requires (Dev)
- ezsystems/ezplatform-code-style: ^0.1.0
- phpunit/phpunit: ^8.2
This package is auto-updated.
Last update: 2024-08-29 02:11:34 UTC
README
安装
使用 Symfony Flex 的应用程序
打开命令控制台,进入您的项目目录并执行
$ composer require ezsystems/ezplatform-query-language
未使用 Symfony Flex 的应用程序
步骤 1: 下载 Bundle
打开命令控制台,进入您的项目目录并执行以下命令以下载此 Bundle 的最新稳定版本
$ composer require ezsystems/ezplatform-query-language
此命令要求您全局安装 Composer,如 Composer 文档中的安装章节所述。
步骤 2: 启用 Bundle
然后,通过将其添加到项目 config/bundles.php
文件中注册的 Bundle 列表中来启用 Bundle。
// config/bundles.php return [ // ... EzSystems\EzPlatformQueryLanguageBundle\EzPlatformQueryLanguageBundle::class => ['all' => true], ];