-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.47 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
{
"name": "baril/bonsai",
"description": "An implementation of the Closure Tables pattern for Eloquent.",
"keywords": [
"laravel",
"eloquent",
"tree",
"hierarchy",
"hierarchical data",
"closure tables",
"closures",
"adjacency list",
"nested set"
],
"license": "MIT",
"type": "library",
"require": {
"illuminate/database": "^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"illuminate/console": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"laravel/legacy-factories": "^1.3.2",
"orchestra/testbench": "^6.23|^7.0|^8.0|^9.0",
"squizlabs/php_codesniffer": "^2.8",
"baril/orderly": "^3.0"
},
"autoload": {
"psr-4": {
"Baril\\Bonsai\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Baril\\Bonsai\\Tests\\": "tests/"
}
},
"suggest": {
"baril/octopus": "Required to use the $node->siblings() relation.",
"baril/orderly": "Required for ordered trees."
},
"extra": {
"laravel": {
"providers": [
"Baril\\Bonsai\\BonsaiServiceProvider"
]
}
},
"scripts": {
"sniff": "./vendor/bin/phpcs --standard=./phpcs.xml ./src",
"fix": "./vendor/bin/phpcbf --standard=./phpcs.xml ./src",
"test": "vendor/bin/phpunit --colors=always --testdox -v"
}
}