This bundle provide integration of PJAX into Symfony 2 framework.
composer require strontium/pjax-bundle
To start using the bundle, register it in your Kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Strontium\PjaxBundle\StrontiumPjaxBundle(),
);
// ...
}
This bundle is under the MIT license.