forked from lazychaser/laravel-nestedset
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
84 lines (84 loc) · 2.12 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "lychee-org/nestedset",
"description": "Nested Set Model for Laravel 10.0 and up (fork with patches for Lychee)",
"keywords": [
"laravel",
"nested sets",
"nsm",
"database",
"hierarchy"
],
"license": "MIT",
"authors": [
{
"name": "Alexander Kalnoy",
"email": "lazychaser@gmail.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/LycheeOrg/phpstan-lychee"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^11.0",
"illuminate/database": "^11.0",
"illuminate/events": "^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpunit/phpunit": "^10.5",
"lychee-org/phpstan-lychee": "^1.0.4",
"larastan/larastan": "^2.0",
"orchestra/testbench": "^9.0"
},
"autoload": {
"psr-4": {
"Kalnoy\\Nestedset\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"run-tests": [
"vendor/bin/phpunit -c phpunit.xml",
"vendor/bin/phpunit -c phpunit.xml --coverage-clover=coverage.xml"
],
"validate-files": [
"vendor/bin/parallel-lint --exclude vendor ."
],
"format": [
"rm .php_cs.cache 2> /dev/null || true",
"vendor/bin/php-cs-fixer fix -v --config=.php-cs-fixer.php"
],
"phpstan": [
"vendor/bin/phpstan analyze"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "8.2"
},
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"extra": {
"branch-alias": {
"dev-master": "v8.0.x-dev"
},
"laravel": {
"providers": [
"Kalnoy\\Nestedset\\NestedSetServiceProvider"
]
}
}
}