bestit / commercetools-product-slug-router-bundle
A cmf router matching the slug to a found commercetools slug.
Installs: 8 732
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 1
Open Issues: 6
Requires
- php: ^7.0
- commercetools/php-sdk: ^1.5 || ^2.0
- psr/log: ^1.0
- symfony-cmf/routing: ^2.0
- symfony/config: ^3.1
- symfony/dependency-injection: ^3.1
- symfony/http-kernel: ^3.1
- symfony/yaml: ^3.1
Requires (Dev)
- bestit/php_codesniffer: ^1 || ^2 || ^3.1
- phpunit/phpunit: ^5.4
- symfony/phpunit-bridge: ^3.0
- dev-master
- 0.6.0
- 0.5.1
- 0.5.0
- 0.4.0
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.3
- 0.2.2
- 0.2.1
- 0.1.4
- 0.1.3
- 0.1.2
- 0.1.1
- dev-dependabot/composer/symfony/http-kernel-3.4.49
- dev-dependabot/composer/guzzlehttp/guzzle-6.5.8
- dev-dependabot/composer/guzzlehttp/psr7-1.8.5
- dev-dependabot/composer/symfony/http-foundation-3.4.42
- dev-dependabot/composer/symfony/phpunit-bridge-3.4.26
- dev-dependabot/composer/symfony/dependency-injection-3.4.26
- dev-feature/CTPBH-2504
- dev-fix/codesniffer
This package is auto-updated.
Last update: 2024-10-30 01:31:49 UTC
README
This router loads a product matching the given request uri to product slugs. It utilizes the cmf routing package heavily and registers the provided product router as a chained cmf router through the service tag "router".
Installation
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require bestit/commercetools-product-slug-router-bundle
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the app/AppKernel.php
file of your project:
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new \BestIt\CtProductSlugRouterBundle\BestItCtProductSlugRouterBundle(), ); // ... } // ... }
Step 3: Configure the Bundle
best_it_ct_product_slug_router: # Which controller-method should be used on a positive match? controller: 'BestIt\Frontend\ProductBundle\Controller\DetailController::indexAction' # Which priority has this router in the cmf chaining? priority: 0 # Service id for the repositry loading products with their slug. You should fulfill the provided interface. repository: ~ # Which route name is used for a positive match? route: best_it_frontend_product_detail_index
Further ToDos
- The lib folder could be moved to a separate repo.