-
Notifications
You must be signed in to change notification settings - Fork 877
/
composer.json
60 lines (60 loc) · 1.93 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
55
56
57
58
59
60
{
"name": "prettus/l5-repository",
"description": "Laravel 5|6|7|8|9|10|11 - Repositories to the database layer",
"keywords": [
"laravel",
"repository",
"eloquent",
"model",
"cache"
],
"license": "MIT",
"authors": [
{
"name": "Anderson Andrade",
"homepage": "http://andersonandra.de",
"email": "contato@andersonandra.de",
"role": "Developer"
}
],
"homepage": "http://andersao.github.io/l5-repository",
"support": {
"email": "contato@andersonandra.de",
"issues":"https://github.com/andersao/l5-repository/issues",
"wiki":"https://github.com/andersao/l5-repository",
"source":"https://github.com/andersao/l5-repository",
"docs": "http://andersao.github.io/l5-repository"
},
"require": {
"illuminate/http": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/config": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/database": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/pagination": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/console": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/filesystem": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0",
"prettus/laravel-validation": "~1.1|~1.2|~1.3|~1.4|~1.5|~1.6",
"illuminate/validation": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0"
},
"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 provide easy validation with the repository (1.1.*)"
},
"extra": {
"laravel": {
"providers": [
"Prettus\\Repository\\Providers\\RepositoryServiceProvider"
]
}
},
"minimum-stability": "stable"
}