This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
65 lines (65 loc) · 2.01 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
{
"name": "daniel-de-wit/laravel-ide-helper-hook-eloquent-has-many-deep",
"type": "library",
"description": "Add Eloquent Has Many Deep support to Laravel IDE Helper",
"keywords": [
"dev",
"laravel-ide-helper",
"eloquent-has-many-deep"
],
"homepage": "https://github.com/daniel-de-wit/laravel-ide-helper-hook-eloquent-has-many-deep",
"license": "MIT",
"authors": [
{
"name": "Daniel de Wit",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.3 || ^8.0",
"barryvdh/laravel-ide-helper": "^2.9.2",
"staudenmeir/eloquent-has-many-deep": "^1.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"nunomaduro/larastan": "^0.7.3",
"orchestra/testbench": "^6.7",
"phpstan/phpstan-mockery": "^0.12.13",
"phpstan/phpstan-phpunit": "^0.12.18",
"phpunit/phpunit": "^9.5"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"DanielDeWit\\LaravelIdeHelperHookEloquentHasManyDeep\\Providers\\LaravelIdeHelperHookEloquentHasManyDeepServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"DanielDeWit\\LaravelIdeHelperHookEloquentHasManyDeep\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DanielDeWit\\LaravelIdeHelperHookEloquentHasManyDeep\\Tests\\": "tests"
}
},
"scripts": {
"analyze": "vendor/phpstan/phpstan/phpstan analyse",
"check-style": [
"php-cs-fixer fix --diff --diff-format=udiff --dry-run",
"php-cs-fixer fix --diff --diff-format=udiff --dry-run --config=.php_cs.tests.php"
],
"coverage": "vendor/bin/phpunit",
"fix-style": [
"php-cs-fixer fix",
"php-cs-fixer fix --config=.php_cs.tests.php"
],
"test": "vendor/bin/phpunit --no-coverage"
}
}