-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1.03 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
{
"name": "simialbi/yii2-nestable",
"description": "Yii 2.0 implementation of nested set behavior.",
"keywords": ["yii2", "extension", "widget", "nestable", "sortable", "nested set", "behavior", "jquery"],
"homepage": "https://github.com/simialbi/yii2-nestable",
"type": "yii2-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/simialbi/yii2-nestable/issues",
"source": "https://github.com/simialbi/yii2-nestable"
},
"authors": [
{
"name": "Simon Karlen",
"email": "simi.albi@gmail.com"
}
],
"require": {
"php": ">=7.3",
"yiisoft/yii2": "~2.0",
"yiisoft/yii2-jui": "~2.0",
"creocoder/yii2-nested-sets": "*",
"simialbi/yii2-simialbi-base": ">=0.13.1 | ^1.0.0"
},
"autoload": {
"psr-4": {
"simialbi\\yii2\\nestable\\": "src"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}