-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 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
42
{
"name": "mgrechanik/yii2-materialized-path",
"description": "Materialized Path Behavior for Yii2 Framework",
"type": "yii2-extension",
"keywords": ["yii2", "yii 2", "materialized path", "path enumeration", "hierarchical", "tree", "active record", "behavior"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Mikhail Grechanik",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/mgrechanik/yii2-materialized-path/issues?state=open",
"source": "https://github.com/mgrechanik/yii2-materialized-path"
},
"require": {
"yiisoft/yii2": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "7.*"
},
"autoload": {
"psr-4": {
"mgrechanik\\yiimaterializedpath\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"mgrechanik\\yiimaterializedpath\\tests\\": "tests/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"extra": {
"bootstrap": "mgrechanik\\yiimaterializedpath\\tools\\Bootstrap"
}
}