bestit / commercetools-product-slug-router-bundle
一个将slug匹配到找到的commercetools slug的cmf路由器。
0.6.0
2020-06-22 11:21 UTC
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-08-30 01:06:46 UTC
README
此路由器加载与给定请求uri匹配的产品slug。它大量使用cmf路由包,并通过服务标签"router"将提供的产品路由器注册为链式cmf路由器。
安装
步骤1:下载包
打开命令行,进入您的项目目录并执行以下命令以下载此包的最新稳定版本
$ composer require bestit/commercetools-product-slug-router-bundle
此命令需要您全局安装Composer,如Composer文档中的安装章节所述。
步骤2:启用包
然后,通过将其添加到项目中app/AppKernel.php
文件中注册的包列表中来启用该包
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new \BestIt\CtProductSlugRouterBundle\BestItCtProductSlugRouterBundle(), ); // ... } // ... }
步骤3:配置包
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
进一步待办事项
- lib文件夹可以移动到单独的仓库中。