dotsunited / bundlefu-silex-service-provider
Silex service provider for BundleFu
Requires
- php: >=5.3.0
- dotsunited/bundlefu: 1.*
Requires (Dev)
- dotsunited/bundlefu-twig-extension: 1.*
- silex/silex: 1.0.*
Suggests
- dotsunited/bundlefu-twig-extension: Provides integration with the Twig templating engine
This package is auto-updated.
Last update: 2024-11-05 18:34:03 UTC
README
The BundleFuSilexServiceProvider integrates BundleFu into the Silex micro-framework.
Installation
BundleFuSilexServiceProvider can be installed using the Composer tool. You can either add dotsunited/bundlefu-silex-service-provider
to the dependencies in your composer.json, or if you want to install BundleFuSilexServiceProvider as standalone, go to the main directory and run:
$ wget http://getcomposer.org/composer.phar $ php composer.phar install
You can then use the composer-generated autoloader to access the BundleFuSilexServiceProvider classes:
<?php require 'vendor/autoload.php'; ?>
Usage
Register the BundleFuServiceProvider to your Silex application:
<?php $app = new \Silex\Application(); $app->register(new DotsUnited\BundleFu\Silex\BundleFuServiceProvider()); ?>
You can now use the bundlefu.factory
service to create bundles in your application:
<?php $bundle = $app['bundlefu.factory']->createBundle(); ?>
To configure the factory, you can pass the bundlefu.options
and bundlefu.filters
parameters:
<?php $app->register(new DotsUnited\BundleFu\Silex\BundleFuServiceProvider(), array( 'bundlefu.options' => array( 'bypass' => true ), 'bundlefu.filters' => array( 'js_closure_compiler' => new \DotsUnited\BundleFu\Filter\ClosureCompilerService() ) )); ?>
Twig
The service provider automatically registers the BundleFu twig extension if Twig is available (ensure that you register the BundleFuServiceProvider after the TwigServiceProvider in your application).
If do not want the extension to be registered, set bundlefu.twig.extension
with the value false
as a parameter:
<?php $app->register(new DotsUnited\BundleFu\Silex\BundleFuServiceProvider(), array( 'bundlefu.twig.extension' => false )); ?>
License
BundleFuSilexServiceProvider is released under the MIT License.