SyliusBloggerBundle ====================== Highly flexible Blogger engine. Installation ------------ Installing dependencies ~~~~~~~~~~~~~~~~~~~~~~~ This bundle uses **Pagerfanta library** and **PagerfantaBundle**. The installation guide can be found `here `_. Downloading the bundle ~~~~~~~~~~~~~~~~~~~~~~ The good practice is to download it to `vendor/bundles/Sylius/Bundle/BloggerBundle`. This can be done in several ways, depending on your preference. The first method is the standard Symfony2 method. Using the vendors script ************************ Add the following lines in your `deps` file. :: [SyliusBloggerBundle] git=git://github.com/Sylius/SyliusBloggerBundle.git target=bundles/Sylius/Bundle/BloggerBundle Now, run the vendors script to download the bundle. .. code-block:: bash $ php bin/vendors install Using submodules **************** If you prefer instead to use git submodules, then run the following lines. .. code-block:: bash $ git submodule add git://github.com/Sylius/SyliusBloggerBundle.git vendor/bundles/Sylius/Bundle/BloggerBundle $ git submodule update --init Autoloader configuration ~~~~~~~~~~~~~~~~~~~~~~~~ Add the `Sylius\\Bundle` namespace to your autoloader. .. code-block:: php registerNamespaces(array( 'Sylius\\Bundle' => __DIR__.'/../vendor/bundles' )); Adding bundle to kernel ~~~~~~~~~~~~~~~~~~~~~~~ Finally, enable the bundle in the kernel... .. code-block:: php `_ for CI. Before running tests, load the dependencies using `Composer `_. .. code-block:: bash $ wget http://getcomposer.org/composer.phar $ php composer.phar install Now you can test by simply using this command. .. code-block:: bash $ phpunit Working examples ---------------- If you want to see this and other bundles in action, try out the `Sylius sandbox application `_. It's open sourced github project. Dependencies ------------ This bundle uses the awesome `Pagerfanta library `_ and `Pagerfanta bundle `_. Bug tracking ------------ This bundle uses `GitHub issues `_. If you have found bug, please create an issue.