forked from stefangabos/Zebra_Mptt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.27 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
43
44
45
46
47
48
49
{
"name": "stefangabos/zebra_mptt",
"type": "library",
"description": "A PHP library providing an implementation of the modified preorder tree traversal algorithm",
"keywords": ["php","mptt", "modified", "preorder", "tree", "traversal"],
"homepage": "https://github.com/stefangabos/Zebra_Mptt",
"license": "LGPL-3.0",
"authors": [
{
"name": "Stefan Gabos",
"email": "[email protected]",
"homepage": "https://github.com/stefangabos/",
"role": "Developer"
},
{
"name": "Writ3it",
"email": "[email protected]",
"homepage": "https://github.com/writ3it/",
"role": "Contributor"
}
],
"require": {
"php": ">=5.0.0"
},
"autoload": {
"classmap": [
"Zebra_Mptt.php"
],
"psr-4": {
"Zebra\\Mptt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZebraTests\\Mptt\\": "tests"
}
},
"require-dev": {
"php": ">=7.2",
"phpunit/phpunit": "^8",
"ext-mysqli": "*",
"ext-pdo": "*"
},
"scripts": {
"test": [
"vendor/bin/phpunit --bootstrap tests/bootstrap.php tests"
]
}
}