-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·45 lines (45 loc) · 1.16 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
{
"name": "red-jasmine/support",
"description": "red-jasmine support",
"license": "MIT",
"authors": [
{
"name": "liushoukun",
"email": "[email protected]",
"homepage": "https://github.com/liushoukun"
}
],
"homepage": "https://github.com/red-jasmine/support",
"keywords": ["Laravel", "Support"],
"require": {
"illuminate/contracts": "^10.0|^11.0",
"spatie/laravel-data": "^4",
"spatie/laravel-query-builder": "^5.8",
"spatie/laravel-package-tools": "^1.15.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"RedJasmine\\Support\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RedJasmine\\Support\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"RedJasmine\\Support\\SupportPackageServiceProvider"
]
},
"branch-alias": {
"dev-develop": "1.0.x-dev",
"dev-master": "1.0.x-dev",
"dev-main": "1.0.x-dev"
}
}
}