stadline/js-extension-bundle

A collection of JS tools

Installs: 9 316

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 17

Forks: 0

Open Issues: 0

Language:JavaScript

1.1.1 2017-08-24 12:39 UTC

This package is not auto-updated.

Last update: 2024-03-26 00:07:59 UTC


README

  1. Add JsExtensionBundle to your dependencies:

    // composer.json
    
    {
       // ...
       "require": {
           // ...
           "stadline/js-extension-bundle": "~1.0"
       }
    }
    
  2. Use Composer to download and install JsExtensionBundle:

    $ php composer.phar update stadline/js-extension-bundle
    
  3. Register the bundle in your application:

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