forked from giordanolima/eloquent-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 924 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
{
"name": "giordanolima/eloquent-repository",
"description": "Repository pattern for Eloquent ORM with a powerfull cache for database queries.",
"keywords": ["laravel", "eloquent", "repository"],
"license": "MIT",
"authors": [
{
"name": "Giordano de Andrades Lima",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/config": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.*",
"illuminate/database": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.*",
"illuminate/support": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.*"
},
"autoload": {
"psr-4": {
"GiordanoLima\\EloquentRepository\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"GiordanoLima\\EloquentRepository\\RepositoryServiceProvider"
]
}
}
}