dev-master
9999999-devSymfony bundle to install third party assets.
MIT
The Requires
by Erfans
assets erfans
Symfony bundle to install third party assets.
The purpose of this bundle is to manage third party assets for reusable bundles., (*1)
As it is mentioned in Symfony documentation:, (*2)
A bundle should also not embed third-party libraries written in JavaScript, CSS or any other language., (*3)
Additionally due to license restrictions and conflicts a bundle may could not include third party assets (e.g. FOSCKEditorBundle)., (*4)
To solve this situation, a bundle could only contain a configuration and by running a command line this bundle will install the configured assets., (*5)
This bundle allows to define multiple agents (downloader or installer)
service and tag them with erfans_asset.agent
and add alias
attribute to use them in the installing process.
Bundles can contain asset config files to install assets by proper agent.
(By now only Bower and File agents have been implemented.), (*6)
Open a command console, enter your project directory and execute:, (*7)
$ composer require erfans/asset-bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:, (*8)
$ composer require erfans/asset-bundle
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation., (*9)
Then, enable the bundle by adding it to the list of registered bundles
in the app/AppKernel.php
file of your project:, (*10)
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new Erfans\AssetBundle\ErfansAssetBundle(), ); // ... } // ... }
Default configuration for "ErfansAssetBundle":, (*11)
#app\config\config.yml or #app\packages\erfans_asset.yml erfans_asset: enabled: false # Consider all bundles to check their asset config. all_bundles: false # Bundles to check their asset config file. bundles: # Default: - AppBundle # The default install directory. The default value is ?bundle/Resources/public; ?bundle will be replaced with the bundle directory. default_install_directory: '?bundle/Resources/public' # Configurations to pass to each agent by their alias. agents: # File agent to download defined assets by url. file: # Default directory to install assets. default directory is '?bundle/Resources/public'. default_install_directory: '?bundle/Resources/public' # Create a new directory for each file with name of alias in download directory. create_directory: true # Bower agent to download defined assets. bower: # Directory path to cache assets before installing. You need to change it if you use Symfony2. cache_path: '%kernel.root_dir%/../var/erfans_asset/bower_cache/%kernel.environment%' # Default directory to install assets. The default value is '?bundle/Resources/public'. default_install_directory: '?bundle/Resources/public' # Github token to extend limitation of 60 repository per hour to 5000. github_token: ~
However, the usual necessary configurations are:, (*12)
#app\config\config.yml or #app\packages\erfans_asset.yml erfans_asset: all_bundles: true default_install_directory: '?bundle/Resources/public' agents: file: create_directory: true bower: github_token: github_token_to_extend_limitation
Please note, if you use Symfony2 you need to change the cash directory for bower configuration., (*13)
To define required third party assets for each bundle create an asset.yml
file
in Resources/config
directory of bundle., (*14)
#AppBundle\Resources\config\asset.yml assets: jquery: # alias of asset installer: bower # name of installer id: jquery # id of repository which passes to the installer version: ~1.9 # version of repository jquery_easing: installer: file id: http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js
To download and copy defined assets to the target folder run command erfans:asset:install
in Symfony console. You can limit the installing assets to specific bundles, by passing the
bundle names as arguments, e.g. erfans:asset:install AppBundle
., (*15)
The bower agent of this bundle is based on bowerphp which does not currently support the downloading assets by url. Therefore, a file installer is added to the bundle to download remote files and put them in the target directory., (*16)
Now you can add the installed assets to your twig or other asset loaders such
as RequireJs. If you used the public directory of a bundle as install directory,
then you need also to transfer them to public folder by assets:install
command., (*17)
Symfony bundle to install third party assets.
MIT
assets erfans