stadline / js-extension-bundle
A collection of JS tools
Installs: 9 496
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 19
Forks: 0
Open Issues: 0
Language:JavaScript
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: 2024-11-21 09:19:06 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(), ); } }