Bundle to show statistics over a project ecommerce with Sylius.
$ wget http://getcomposer.org/composer.phar
$ php composer.phar create-project sylius/sylius-standard path/to/install
$ cd path/to/install
$ php app/console sylius:install
Add manually the following line to the composer.json
file:
{
"require": {
// ...
"opositatest/report-bundle": "^1.0"
}
}
Enable the bundles in the kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new \Sylius\Bundle\ReportBundle\SyliusReportBundle(),
new \Opos\Bundle\ReportBundle\OposReportBundle(),
);
}
Add the routes on app/config/routing.yml:
sylius_admin_report:
resource: "@SyliusReportBundle/Resources/config/routing.yml"
prefix: /admin
Now, go to the Report menu in the admin and you can choose some news Data Fetchers.
License can be found here.
The bundle was originally created by Odiseo Team for OpositaTest.