-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
60 lines (60 loc) · 1.45 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": "muffin/hyperlinkauth",
"description": "Password-less authentication for CakePHP 3",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"muffin",
"auth",
"authentication",
"password less",
"no password",
"hyperlink"
],
"homepage": "https://github.com/usemuffin/hyperlinkauth",
"license": "MIT",
"authors": [
{
"name": "Jad Bitar",
"homepage": "http://jadb.io",
"role": "Author"
},
{
"name": "ADmad",
"homepage": "https://github.com/ADmad",
"role": "Author"
},
{
"name": "Others",
"homepage": "https://github.com/usemuffin/hyperlinkauth/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/usemuffin/hyperlinkauth/issues",
"source": "https://github.com/usemuffin/hyperlinkauth"
},
"require": {
"cakephp/cakephp": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.1"
},
"suggest": {
"muffin/tokenize": "Tokens abstraction plugin for CakePHP 3"
},
"autoload": {
"psr-4": {
"Muffin\\HyperlinkAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Muffin\\HyperlinkAuth\\Test\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}