stadline / js-extension-bundle
A collection of JS tools
Installs: 9 728
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 17
Forks: 0
Open Issues: 0
Language:JavaScript
pkg:composer/stadline/js-extension-bundle
Requires
- jms/serializer-bundle: ~1.0 || ^2.0
 - symfony/framework-bundle: ~2.3 || ^3.0
 
Suggests
- bower-asset/jquery: jQuery JavaScript Library
 - bower-asset/magnific-popup: Light and responsive lightbox script with focus on performance
 - bower-asset/marionette: The Backbone framework
 - friendsofsymfony/jsrouting-bundle: A pretty nice way to expose your Symfony2 routing to client applications
 - fxp/composer-asset-plugin: NPM/Bower Dependency Manager for Composer
 - willdurand/js-translation-bundle: A pretty nice way to expose your translation messages to your JavaScript
 
This package is not auto-updated.
Last update: 2025-10-23 13:44:24 UTC
README
- 
Add JsExtensionBundle to your dependencies:
// composer.json { // ... "require": { // ... "stadline/js-extension-bundle": "~1.0" } } - 
Use Composer to download and install JsExtensionBundle:
$ php composer.phar update stadline/js-extension-bundle - 
Register the bundle in your application:
// app/AppKernel.php class AppKernel extends Kernel { // ... public function registerBundles() { $bundles = array( // ... new StadLine\JsExtensionBundle\StadLineJsExtensionBundle(), ); } }