-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
71 lines (71 loc) · 2.05 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "toponepercent/baum",
"type": "library",
"description": "Baum is an implementation of the Nested Set pattern for Eloquent models.",
"keywords": ["nested set", "mptt", "laravel", "eloquent", "database"],
"license": "MIT",
"authors": [
{
"name": "Estanislau Trepat",
"email": "estanis@etrepat.com",
"homepage": "http://etrepat.com"
},
{
"name": "Gary Pearman",
"email": "gaz@red-robot.co.uk",
"homepage": "http://red-robot.co.uk"
},
{
"name": "Brian LaVallee",
"email": "brian.lavallee@invite-comm.jp",
"homepage": "https://invite-comm.jp"
},
{
"name": "Top One Percent LTD",
"email": "developers@theforesight.co.uk",
"homepage": "https://theforesight.co.uk"
}
],
"prefer-stable": true,
"require": {
"php": "^7.3|^8.0|^8.1|^8.2",
"illuminate/console": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/database": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/events": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/filesystem": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^6|^7|^8",
"squizlabs/php_codesniffer": "^3.7",
"laravel/legacy-factories": "^1.3"
},
"autoload": {
"psr-0": {
"Baum": "src/"
},
"files": [
"src/helpers/tree_helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Baum\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Baum\\Providers\\BaumServiceProvider"
]
}
},
"scripts": {
"tests": [
"@php ./vendor/bin/phpunit"
],
"coding_standard": [
"@php ./vendor/bin/phpcs -p -n src tests"
]
}
}