forked from biiiiiigmonster/hasin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.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
{
"name": "laravel-ready/hasin",
"description": "Laravel framework relation has in implement",
"type": "library",
"keywords": [
"laravel",
"orm",
"relation",
"whereHas"
],
"license": "MIT",
"authors": [
{
"name": "YunFeng Lu",
"email": "603707288@qq.com"
}
],
"require": {
"laravel/framework": "v11.8.0"
},
"require-dev": {
"laravel/pint": "v1.16.0",
"phpunit/phpunit": "^10.5.17",
"orchestra/testbench": "v9.1.0",
"pestphp/pest": "v2.34.7",
"pestphp/pest-plugin-laravel": "v2.4.0"
},
"autoload": {
"psr-4": {
"LaravelReady\\Hasin\\": "src",
"LaravelReady\\Hasin\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"LaravelReady\\Hasin\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"LaravelReady\\Hasin\\HasinServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/pest",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": true
},
"minimum-stability": "dev",
"prefer-stable": true
}