-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
48 lines (48 loc) · 1.34 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
{
"name": "korridor/laravel-has-many-merged",
"description": "Custom relationship for Eloquent that merges/combines multiple one-to-may (hasMany) relationships",
"keywords": ["laravel", "eloquent", "relations", "has-many"],
"homepage": "https://github.com/korridor/laravel-has-many-merged",
"license": "MIT",
"authors": [
{
"name": "korridor",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"illuminate/database": "^10|^11"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^8|^9",
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Korridor\\LaravelHasManyMerged\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Korridor\\LaravelHasManyMerged\\Tests\\": "tests/"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit",
"test-coverage": "@php vendor/bin/phpunit --coverage-html coverage",
"fix": "@php ./vendor/bin/php-cs-fixer fix",
"lint": "@php ./vendor/bin/phpcs --error-severity=1 --warning-severity=8 --extensions=php",
"analyse": [
"@php ./vendor/bin/phpstan analyse --memory-limit=2G"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}