-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 960 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": "rob006/yii2-simple-auth-yii-authenticator",
"description": "Yii 2 extension that provides helper for authenticate Request from yii2-httpclient package.",
"keywords": ["yii2", "extension", "auth", "authentication", "authenticator"],
"homepage": "https://github.com/rob006-software/yii2-simple-auth-yii-authenticator",
"type": "yii2-extension",
"license": "MIT",
"authors": [
{
"name": "Robert Korulczyk",
"email": "[email protected]",
"homepage": "https://rob006.net/"
}
],
"support": {
"issues": "https://github.com/rob006-software/yii2-simple-auth-yii-authenticator/issues",
"source": "https://github.com/rob006-software/yii2-simple-auth-yii-authenticator"
},
"require": {
"yiisoft/yii2": "~2.0.9",
"yiisoft/yii2-httpclient": "~2.0.1",
"rob006/yii2-simple-auth": "^1.0"
},
"autoload": {
"psr-4": {
"rob006\\simpleauth\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}