-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 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
{
"name": "polycademy/polyauth",
"description": "Authentication & Authorisation Library",
"keywords": ["authentication", "authorisation", "sessions", "user accounts", "rbac", "access control", "oauth"],
"homepage": "https://github.com/Polycademy/PolyAuth",
"license": "MIT",
"authors": [{
"name": "Roger Qiu",
"email": "[email protected]",
"homepage": "http://polycademy.com",
"role": "Founder and Developer"
}],
"require": {
"php": ">=5.4",
"psr/log": "~1.0",
"phpseclib/phpseclib": "~0.3.6",
"jwage/purl": "~0.0.3",
"gabrielbull/browser": "~3.0",
"nesbot/carbon": "~1.8",
"ircmaxell/password-compat": "~1.0",
"symfony/console": "~2.4",
"symfony/http-foundation": "~2.1",
"symfony/expression-language": "~2.4",
"symfony/options-resolver": "~2.1",
"morrisonlevi/ardent": "~0.14.0",
"phpoption/phpoption": "~1.4",
"jms/serializer": "~0.16",
"dflydev/hawk": "0.0.0",
"lusitanian/oauth": "~0.3",
"rmccue/requests": "~1.6",
"tedivm/stash": "~0.12.3",
"willdurand/geocoder": "~2.4",
"yohang/finite": "~1.0"
},
"require-dev": {
"codeception/codeception": "~1.8",
"squizlabs/php_codesniffer": "~1.5",
"fabpot/php-cs-fixer": "~0.4",
"phpmd/phpmd": "~1.5",
"fzaninotto/faker": "~1.3",
"halleck45/php-metrics": "~0.0.5"
},
"config": {
"bin-dir": "bin/"
},
"autoload": {
"psr-4": {
"PolyAuth\\": "src/"
}
},
"bin": ["polyauth"]
}