-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
41 lines (37 loc) · 869 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
36
37
38
39
40
41
{
"name": "coderius/yii2-lightbox2-widget",
"description": "Yii 2 lightbox2-widget",
"keywords": ["lightbox", "widget", "lightbox2", "yii2"],
"type": "yii2-extension",
"license": "MIT",
"authors": [
{
"name": "Serg Coderius",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "~2.0.10",
"bower-asset/lightbox2": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"coderius\\lightbox2\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}