forked from stefangabos/Zebra_Mptt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 981 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
{
"name": "boardfy/mptt-multi-independent-tree",
"type": "library",
"description": "A PHP library providing a multi independent tree implementation of the modified preorder tree traversal algorithm",
"keywords": ["php","mptt", "modified", "preorder", "multi", "tree", "traversal"],
"homepage": "https://github.com/Boardfy/Mptt_MultiIndependentTree",
"license": "LGPL-3.0",
"authors": [
{
"name": "Boardfy",
"email": "[email protected]",
"homepage": "https://www.boardfy.com/",
"role": "Organization"
},
{
"name": "Carlos Monroy Fernández",
"email": "[email protected]",
"homepage": "https://github.com/Redominus/",
"role": "Developer"
}
],
"require": {
"php": ">=5.0.0",
"ext-mysqli": "*"
},
"autoload": {
"classmap": [
"Mptt_MultiIndependentTree.php"
]
}
}