forked from fico7489/laravel-eloquent-join
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.26 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": "fico7489/laravel-eloquent-join",
"description": "This package introduces the join magic for eloquent models and relations.",
"keywords": [
"laravel join",
"laravel eloquent join",
"laravel sort join",
"laravel where join",
"laravel join relation"
],
"homepage": "https://github.com/fico7489/laravel-eloquent-join",
"support": {
"issues": "https://github.com/fico7489/laravel-eloquent-join/issues",
"source": "https://github.com/fico7489/laravel-eloquent-join"
},
"license": "MIT",
"authors": [
{
"name": "Filip Horvat",
"email": "filip.horvat@am2studio.hr",
"homepage": "http://am2studio.hr",
"role": "Developer"
}
],
"require": {
"illuminate/database": "^8.0|^9.0|^10.0"
},
"require-dev": {
"orchestra/testbench": "*",
"friendsofphp/php-cs-fixer" : "*",
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"Fico7489\\Laravel\\EloquentJoin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fico7489\\Laravel\\EloquentJoin\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}