inwendo/iw_client_latex_symfony_bundle

该软件包最新版本(0.5.2)没有可用的许可信息。

inwendo Latex API 客户端

0.5.2 2019-09-18 10:39 UTC

This package is not auto-updated.

Last update: 2024-09-26 10:10:57 UTC


README

安装

步骤 1:下载 Bundle

编辑 composer.json 并添加以下信息

    //...
    "require": {
        "inwendo/iw_client_latex_symfony_bundle": ">=0.2"
    }
    //...

打开命令行,进入项目目录并执行以下命令以下载此 Bundle 的最新稳定版本

$ composer update

此命令需要您全局安装 Composer,具体请参阅 Composer 文档中的安装章节

步骤 2:启用 Bundle

然后,将 Bundle 添加到项目中 app/AppKernel.php 文件中注册的 Bundle 列表中以启用它

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new Inwendo\LatexClientBundle\InwendoLatexClientBundle(),
        );

        // ...
    }

    // ...
}

步骤 3:将配置添加到 config.yml 文件中

inwendo_latex_client:
    endpoint: "%latex_endpoint%"
    jwt_license_token: "%latex_jwt_license_token%"

步骤 5:使用

待办事项