-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 938 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 938 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
{
"name":"psecio/gatekeeper",
"type":"library",
"description":"A simple PHP authentication and authorization library",
"keywords":["authentication", "authorization"],
"homepage":"https://github.com/psecio/gatekeeper.git",
"license":"MIT",
"authors":[
{
"name":"Chris Cornutt",
"email":"ccornutt@phpdeveloper.org",
"homepage":"http://www.phpdeveloper.org/"
}
],
"require":{
"php":">=5.4.0",
"enygma/modler": "2.*",
"robmorgan/phinx": "*",
"ircmaxell/password-compat": "^1.0.4",
"ircmaxell/random-lib": "^1.1.0",
"vlucas/phpdotenv": "~2",
"symfony/expression-language": "^2.5",
"monolog/monolog": "^1.13"
},
"require-dev": {
"phpunit/phpunit": "4.1.4"
},
"autoload": {
"psr-0": {
"Psecio": "src/"
}
},
"bin": ["bin/setup.sh"]
}