-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 754 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 754 Bytes
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
{
"name": "sllhsmile/wherehasin",
"description": "Hyperf ORM whereHasIn",
"type": "library",
"keywords": ["hyperf", "orm", "whereHas", "relation"],
"homepage": "https://github.com/sllhSmile/wherehasin",
"license": "MIT",
"authors": [
{
"name": "hxh",
"email": "414018093@qq.com"
}
],
"require": {
"php": ">=7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.68"
},
"autoload": {
"psr-4": {
"SllhSmile\\WhereHasIn\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SllhSmile\\WhereHasIn\\Tests\\": "tests/"
}
},
"extra": {
"hyperf": {
"config": "SllhSmile\\WhereHasIn\\ConfigProvider"
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix $1"
}
}