-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
42 lines (42 loc) · 1014 Bytes
/
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
{
"name": "ajcastro/eager-load-pivot-relations",
"description": "Eager load pivot relations for Laravel Eloquent's BelongsToMany relation.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Arjon Jason Castro",
"email": "ajcastro29@gmail.com"
}
],
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"laravel/framework": ">= 5.0.0",
"laravel/legacy-factories": ">= 1.0.0",
"orchestra/testbench": ">= 3.0.0",
"phpunit/phpunit": ">= 6.0.0"
},
"autoload": {
"psr-4": {
"AjCastro\\EagerLoadPivotRelations\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AjCastro\\EagerLoadPivotRelations\\Tests\\": "tests"
},
"classmap": [
"tests/Database/Migrations"
]
},
"extra": {
"laravel": {
"providers": [
],
"aliases": {
}
}
}
}