-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.72 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.72 KB
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
{
"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": "Bilal Aslim",
"email": "bilalaslim@gmail.com",
"homepage": "https://github.com/BilalAslim"
}
],
"prefer-stable": true,
"require": {
"php": "^7.3|^8.0|^8.1|^8.2|^8.3|^8.4",
"illuminate/console": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/database": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/events": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/filesystem": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/support": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0"
},
"require-dev": {
"orchestra/testbench": "^6|^7|^8|^9|^10",
"squizlabs/php_codesniffer": "^3.11",
"laravel/legacy-factories": "^1.4"
},
"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 --no-coverage"
],
"coding_standard": [
"@php ./vendor/bin/phpcs -p -n src tests"
],
"test-coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit"
}
}