-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
58 lines (58 loc) · 1.33 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
{
"name": "boo/radius",
"type": "library",
"description": "A PHP RADIUS client implementation",
"keywords": [
"RADIUS"
],
"license": "MIT",
"authors": [
{
"name": "Jonas Stendahl",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5",
"ext-sockets": "*",
"clue/socket-raw": "^1.3",
"marc-mabe/php-enum": "^2.3.1",
"paragonie/random_compat": "^2.0"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "~1.0.0",
"php-coveralls/php-coveralls": "~2.1.0",
"phpunit/phpunit": "~4.8.36",
"symfony/console": "~3.4.11",
"symfony/var-dumper": "~3.4.11",
"twig/twig": "~1.35.3"
},
"config": {
"platform": {
"php": "5.5.9"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"Boo\\Radius\\": "src/"
},
"files": [
"functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Boo\\Radius\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/jyggen/radius/issues",
"source": "https://github.com/jyggen/radius"
}
}