-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
42 lines (42 loc) · 1.03 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
{
"name": "salmanzafar/laravel-repository-pattern",
"description": "Implement repository pattern with a single command",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Salman Zafar",
"email": "salmanzafar949@gmail.com"
}
],
"keywords": [
"laravel",
"laravel5",
"laravel6",
"laravel-repository-pattern",
"laravel-Repository-design-pattern"
],
"require": {
"php": ">=7.0.0"
},
"require-dev": {
"laravel/framework": ">=5.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Salman\\RepositoryPattern\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Salman\\RepositoryPattern\\RepositoryPatterServiceProvider"
],
"aliases": {
"RepositoryPattern": "Salman\\RepositoryPattern\\Facades\\RepositoryPattern"
}
}
}
}