-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
48 lines (48 loc) · 1.05 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
46
47
48
{
"name": "alexmg86/laravel-sub-query",
"description": "Laravel subquery",
"license": "MIT",
"keywords": ["php", "laravel", "sub", "query", "withSum", "withMax", "withMin", "withAvg", "orderByRelation", "limit relation"],
"type": "library",
"authors": [
{
"name": "Aleksei Morozov",
"email": "[email protected]"
}
],
"homepage": "https://github.com/alexmg86/laravelsubquery",
"require": {
"php": ">=5.6.4",
"illuminate/support": ">=5.4",
"laravel/framework": ">5.0"
},
"require-dev": {
"orchestra/testbench": ">=3.1",
"phpunit/phpunit": ">=5.7"
},
"autoload": {
"psr-4": {
"Alexmg86\\LaravelSubQuery\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Alexmg86\\LaravelSubQuery\\Tests\\": "tests"
}
},
"scripts": {
"phpunit": "phpunit"
},
"extra": {
"laravel": {
"providers": [
"Alexmg86\\LaravelSubQuery\\ServiceProvider"
]
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}