-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
34 lines (34 loc) · 878 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
31
32
33
34
{
"name": "ahsankhatri/wordpress-auth-provider",
"description": "A package to provide wordpress users in laravel authentication system.",
"keywords": ["laravel", "wordpress", "authentication"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ahsaan Muhammad Yousuf",
"email": "ahsankhatri1992@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^7.1",
"hautelook/phpass": ">=0.3",
"laravel/framework": "^5.6|^6.0|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"MrShan0\\WordpressAuth\\": "src/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"MrShan0\\WordpressAuth\\WordpressAuthServiceProvider"
]
}
}
}