-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.07 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
49
50
51
52
53
54
{
"name": "guosheng1987/laravel-repository-query",
"description": "This package support a easy way to bind a parameter named `$filters` to your url. After that your Bulider instance can bind it into your `Where` condition",
"keywords": [
"laravel",
"repository",
"repository pattern",
"eloquent",
"repositories",
"query",
"query library"
],
"license": "BSD 2-Clause",
"authors": [
{
"name": "guosheng1987",
"email": "guosheng1987@126.com"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "~5.1",
"illuminate/database": "~5.1"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"mockery/mockery": "^0.9.4"
},
"autoload": {
"psr-4": {
"Reposilib\\": "src/"
}
},
"autoload-dev": {
"files": [
"tests/TestFunctions.php"
],
"psr-4": {
"Reposilib\\Test\\": "tests"
}
},
"archive" : {
"exclude": [
"/tests"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}