forked from andersao/l5-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.38 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
{
"name": "prettus/l5-repository",
"description": "Laravel 5 - Repositories to the database layer",
"keywords": ["laravel", "repository", "eloquent", "model", "cache"],
"license": "MIT",
"authors": [
{
"name": "Anderson Andrade",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues":"https://github.com/andersao/l5-repository/issues",
"wiki":"https://github.com/andersao/l5-repository",
"source":"https://github.com/andersao/l5-repository"
},
"require": {
"illuminate/http": "~5.0|~5.1|~5.2",
"illuminate/config": "~5.0|~5.1|~5.2",
"illuminate/support": "~5.0|~5.1|~5.2",
"illuminate/database": "~5.0|~5.1|~5.2",
"illuminate/pagination": "~5.0|~5.1|~5.2",
"illuminate/console": "~5.0|~5.1|~5.2",
"illuminate/filesystem": "~5.0|~5.1|~5.2"
},
"autoload": {
"psr-4": {
"Prettus\\Repository\\": "src/Prettus/Repository/"
}
},
"config": {
"preferred-install": "dist"
},
"suggest": {
"league/fractal": "Required to use the Fractal Presenter (0.12.*).",
"robclancy/presenter": "Required to use the Presenter Model (1.3.*)",
"prettus/laravel-validation": "Required to use the Repository Validators (1.1.*)"
},
"extra": {
"branch-alias": {
"dev-develop": "2.2-dev"
}
},
"minimum-stability": "stable"
}