-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
45 lines (45 loc) · 1.52 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "dotplant/store",
"description": "The extension for DotPlant3 CMS that provides a rich store functional",
"type": "dotplant-extension",
"keywords": ["yii2", "extension", "dotplant", "dotplant3", "store", "shop", "goods", "ecommerce"],
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Pavel Fedotov",
"email": "fps.06@mail.ru"
}
],
"require": {
"php": ">=5.5.0",
"yiisoft/yii2": "~2.0.0",
"devgroup/yii2-extensions-manager": "dev-master",
"devgroup/yii2-multilingual": "dev-master",
"dotplant/entity-structure": "dev-master",
"dotplant/currencies": "dev-master",
"devgroup/yii2-users-module": "dev-master",
"devgroup/yii2-events-system": "dev-master",
"dotplant/emails": "dev-master",
"paypal/rest-api-sdk-php": "*",
"kartik-v/yii2-mpdf": "^1.0"
},
"autoload": {
"psr-4": {
"DotPlant\\Store\\": "src/"
}
},
"extra": {
"yii2-extension": {
"name": "DotPlant Store",
"name_ru": "DotPlant Магазин",
"iconUrl": "",
"description_ru": "Расширение для DotPlant3 CMS которое предоставляет богатый функционал магазина"
},
"migrationPath": [
"src/migrations"
],
"configurables": "src/configurables.php",
"translationCategory": "dotplant.store"
}
}