forked from biiiiiigmonster/hasin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 1.95 KB
/
Copy pathcomposer.json
File metadata and controls
75 lines (75 loc) · 1.95 KB
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
{
"name": "laravel-ready/hasin",
"description": "Laravel framework relation has in implement",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"orm",
"relation",
"whereHas"
],
"authors": [
{
"name": "YunFeng Lu",
"email": "603707288@qq.com"
},
{
"name": "relliv",
"email": "epsilonelittr@gmail.com"
}
],
"support": {
"issues": "https://github.com/laravel-ready/hasin/issues",
"source": "https://github.com/laravel-ready/hasin"
},
"require": {
"php": "^8.5 || ^8.4 || ^8.3 || ^8.2 || ^8.1",
"illuminate/support": "^12.4 || ^11.8 || ^10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.92",
"larastan/larastan": "^2.9 || ^3.8",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^8.0 || ^9.0 || ^10.0",
"pestphp/pest": "^2.0 || ^3.0 || ^4.1",
"pestphp/pest-plugin-laravel": "^2.0 || ^3.0 || ^4.0",
"phpstan/extension-installer": "^1.4"
},
"autoload": {
"psr-4": {
"LaravelReady\\Hasin\\": "src",
"LaravelReady\\Hasin\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"LaravelReady\\Hasin\\Tests\\": "tests"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix -v",
"lint:check": "vendor/bin/php-cs-fixer fix -v --dry-run",
"analyse": "vendor/bin/phpstan analyse --ansi --memory-limit=512M",
"test": "vendor/bin/pest --colors=always --parallel",
"test:coverage": "@test --coverage-php ./coverage/cov/default.cov",
"test:coverage:html": "@test --coverage-html coverage/html/default"
},
"extra": {
"laravel": {
"providers": [
"LaravelReady\\Hasin\\HasinServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}