-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
35 lines (35 loc) · 986 Bytes
/
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
{
"name": "cornernote/yii2-dashboard",
"description": "Dashboard manager for Yii2",
"keywords": ["yii2", "dashboard"],
"type": "yii2-extension",
"license": "BSD 3-Clause",
"authors": [
{
"name": "Brett O'Donnell",
"homepage": "https://mrphp.com.au/",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "2.*",
"yiisoft/yii2-bootstrap": "2.*",
"kartik-v/yii2-sortable": "1.2.*"
},
"require-dev": {
"yiisoft/yii2-codeception": "2.*",
"codeception/specify": "*",
"codeception/verify": "*",
"codeception/c3": "*",
"scrutinizer/ocular": "~1.1",
"heroku/heroku-buildpack-php": "*",
"fxp/composer-asset-plugin": "1.*"
},
"autoload": {
"psr-4": {"cornernote\\dashboard\\": "src"}
},
"extra": {
"bootstrap": "cornernote\\dashboard\\Bootstrap"
}
}