An open API service indexing awesome lists of open source software.

https://github.com/skeeks-cms/cms-shop

Module for SkeekS CMS
https://github.com/skeeks-cms/cms-shop

shop shopping skeeks-cms

Last synced: about 1 month ago
JSON representation

Module for SkeekS CMS

Awesome Lists containing this project

README

          

Shop on SkeekS CMS
===================================

Installation
------------

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

Either run

```
php composer.phar require --prefer-dist skeeks/cms-shop "*"
```

or add

```
"skeeks/cms-shop": "*"
```

Configuration app
----------

```php

'components' =>
[
'admin' => [
'dashboards' => [
'Shop' =>
[
'skeeks\cms\shop\dashboards\ReportOrderDashboard'
]
],
],

'shop' => [
'class' => 'skeeks\cms\shop\components\ShopComponent',
],

'i18n' => [
'translations' =>
[
'skeeks/shop/app' =>
[
'class' => 'yii\i18n\PhpMessageSource',
'basePath' => '@skeeks/cms/shop/messages',
'fileMap' => [
'skeeks/shop/app' => 'app.php',
],
]
],
],

'urlManager' => [
'rules' => [
'~shop-cart' => 'shop/cart',
'~shop-<_a:(checkout|payment)>' => 'shop/cart/<_a>',
'~shop-<_a:(finish)>' => 'shop/order/<_a>',
'~shop-order/<_a>' => 'shop/order/<_a>',
]
],
],

'modules' =>
[
'shop' => [
'class' => 'skeeks\cms\shop\Module',
]
]

```

Pay systems
----------

* paypal
* robokassa
* Yandex kassa
* Tinkoff

Links
-------
* [Web site](https://cms.skeeks.com)
* [Author](https://skeeks.com)
* [ChangeLog](https://github.com/skeeks-cms/cms-shop/blob/master/CHANGELOG.md)

___

> [![skeeks!](https://skeeks.com/img/logo/logo-no-title-80px.png)](https://skeeks.com)
SkeekS CMS (Yii2) — quickly, easily and effectively!
[skeeks.com](https://skeeks.com) | [cms.skeeks.com](https://cms.skeeks.com)