This repository has been archived by the owner on Jul 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
57 lines (57 loc) · 1.56 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "2amigos/yii2-exportable-widget",
"description": "Exportable GridView widget for Yii2.",
"keywords": ["yii", "extension", "export", "widget"],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Antonio Ramirez",
"email": "[email protected]",
"homepage": "http://2amigos.us"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require" : {
"yiisoft/yii2": "~2.0.5",
"yiisoft/yii2-bootstrap": "^2.0.0",
"box/spout": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"friendsofphp/php-cs-fixer": "^2.0",
"squizlabs/php_codesniffer": "*",
"phpmd/phpmd": "@stable",
"2amigos/yii2-grid-view-library": "^1.0"
},
"suggest": {
"2amigos/yii2-grid-view-library": "Required To use the ExportableBehavior on its GridView widget."
},
"autoload": {
"psr-4": {
"dosamigos\\exportable\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"preferred-install": {
"*": "auto"
},
"fxp-asset": {
"installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
},
"vcs-driver-options": {
"github-no-api": true
},
"git-skip-update": "2 days",
"pattern-skip-version": "(-build|-patch)"
}
}
}