-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
61 lines (61 loc) · 1.39 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
{
"name": "alibayat/laravel-categorizable",
"description": "Implementing Nested-structure Hierarchy Categories system for Eloquent models.",
"license": "MIT",
"keywords": [
"Laravel",
"Eloquent",
"Laravel-Categorizable",
"Laravel Categorizable",
"Nested structure",
"Hierarchy"
],
"authors": [
{
"name": "Ali Bayat",
"email": "ali.bayat@live.com"
}
],
"require": {
"php": "^8.0|^8.1|^8.2|^8.3",
"illuminate/database": "^8.40.0|^9.0|^10.0|^11.0",
"illuminate/support": "^8.40.0|^9.0|^10.0|^11.0",
"kalnoy/nestedset": "^6.0",
"spatie/laravel-sluggable": "^2.2|^3.3|^3.4|^3.6"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^7.0"
},
"autoload": {
"psr-4": {
"AliBayat\\LaravelCategorizable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AliBayat\\LaravelCategorizable\\Tests\\": "tests"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"laravel": {
"providers": [
"AliBayat\\LaravelCategorizable\\CategorizableServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": [
"./vendor/bin/phpunit --testdox --configuration phpunit.xml --coverage-text --verbose --stop-on-failure"
]
}
}