stadline/js-extension-bundle

一组JS工具

安装数: 9,449

依赖者: 0

建议者: 0

安全性: 0

星标: 1

关注者: 18

分支: 0

开放问题: 0

语言:JavaScript

1.1.2 2024-07-02 23:20 UTC

This package is not auto-updated.

Last update: 2024-09-26 08:38:13 UTC


README

  1. 将JsExtensionBundle添加到依赖中

    // composer.json
    
    {
       // ...
       "require": {
           // ...
           "stadline/js-extension-bundle": "~1.0"
       }
    }
    
  2. 使用Composer下载并安装JsExtensionBundle

    $ php composer.phar update stadline/js-extension-bundle
    
  3. 在您的应用中注册此包

    // app/AppKernel.php
    
    class AppKernel extends Kernel
    {
        // ...
        public function registerBundles()
        {
            $bundles = array(
                // ...
                new StadLine\JsExtensionBundle\StadLineJsExtensionBundle(),
            );
        }
    }