-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 855 Bytes
/
Copy pathcomposer.json
File metadata and controls
46 lines (46 loc) · 855 Bytes
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
{
"name": "rougin/authsum",
"description": "Simple authentication package in PHP.",
"keywords": [ "auth-logic", "php-auth", "php-login" ],
"license": "MIT",
"authors":
[
{
"email": "rougingutib@gmail.com",
"homepage": "https://roug.in/",
"name": "Rougin Gutib",
"role": "Software Engineer"
}
],
"require":
{
"php": ">=5.3.0",
"rougin/ezekiel": "~0.1"
},
"require-dev":
{
"ircmaxell/password-compat": "~1.0",
"phpunit/phpunit": "*",
"sanmai/phpunit-legacy-adapter": "*"
},
"autoload":
{
"psr-4":
{
"Rougin\\Authsum\\": "src/"
}
},
"autoload-dev":
{
"psr-4":
{
"Rougin\\Authsum\\": "tests/"
}
},
"scripts":
{
"analyze": "phpstan analyse",
"restyle": "php-cs-fixer fix --config=phpstyle.php",
"test": "phpunit"
}
}