-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 755 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 755 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
{
"name": "pbergman/php-docker-token-auth",
"description": "a light weight docker token authentication build in php",
"keywords": ["docker", "docker authentication", "docker token", "token"],
"license": "MIT",
"authors": [
{
"name": "Philip Bergman",
"email": "pbergman@live.nl"
}
],
"autoload": {
"psr-4": { "DockerToken\\": "src/DockerToken" }
},
"require": {
"php": ">=5.4.0",
"silex/silex": "1.*@stable",
"firebase/php-jwt": "3.*@stable",
"christian-riesen/base32": "1.*@stable",
"symfony/options-resolver": "2.*@stable"
},
"suggest": {
"symfony/yaml": "Used for YamlAuthListener, where you can define users/rights in a yaml files"
}
}