-
Камалов Эрик authored0c3a32f7
This project manages its dependencies using Composer.
Learn more
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
46
47
{
"name": "deck/yii2-mock-request",
"description": "Компонент для навешивания мока на запрос",
"type": "yii2-extension",
"keywords": [
"yii2",
"yii 2"
],
"license": "proprietary",
"authors": [
{
"name": "Erik Kamalov",
"email": "kamalov@deck.lc",
"homepage": "https://deck.lc"
}
],
"support": {
"issues": "https://gitlab.deck.lc/deckko/yii2-mock-request/-/issues",
"source": "https://gitlab.deck.lc/deckko/yii2-mock-request"
},
"require": {
"php": ">=7.3",
"yiisoft/yii2": "~2.0.14",
"kartik-v/yii2-widget-select2": "^2.2",
"yiisoft/yii2-bootstrap": "^2.0",
"kartik-v/yii2-grid": "^3"
},
"autoload": {
"psr-4": {
"deck\\MockRequest\\": "src/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"require-dev": {
"yiisoft/yii2-composer": "^2.0"
}
}