forked from unikent/baum
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathcomposer.json
52 lines (52 loc) · 1.33 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
50
51
52
{
"name": "gazsp/baum",
"type": "library",
"description": "Baum is an implementation of the Nested Set pattern for Eloquent models.",
"keywords": ["nested set", "mptt", "laravel", "laravel 5", "eloquent", "database"],
"license": "MIT",
"authors": [
{
"name": "Estanislau Trepat",
"email": "[email protected]",
"homepage": "http://etrepat.com"
},
{
"name": "Gary Pearman",
"email": "[email protected]",
"homepage": "http://red-robot.co.uk"
}
],
"prefer-stable": true,
"require": {
"php": ">=7.2",
"illuminate/console": ">=5.8",
"illuminate/database": ">=5.8",
"illuminate/events": ">=5.8",
"illuminate/filesystem": ">=5.8",
"illuminate/support": ">=5.8"
},
"require-dev": {
"orchestra/testbench": "^5",
"php-coveralls/php-coveralls": "^2.2"
},
"autoload": {
"psr-0": {
"Baum": "src/"
},
"files": [
"src/helpers/tree_helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Baum\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Baum\\Providers\\BaumServiceProvider"
]
}
}
}