-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
29 lines (29 loc) · 1.13 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
{
"name": "padraic/security-multitool",
"description": "A multitool library offering access to recommended security related libraries, standardised implementations of security defences, and secure implementations of commonly performed tasks.",
"keywords": ["library", "security", "escaping", "sanitisation", "sanitization", "csrf", "xss", "ssl", "tls", "PRNG", "RNG", "random", "htmlpurifier"],
"homepage": "http://github.com/padraic/SecurityMultiTool",
"license": "BSD-3-Clause",
"minimum-stability": "stable",
"authors": [
{
"name": "Pádraic Brady",
"email": "[email protected]",
"homepage": "http://blog.astrumfutura.com"
}
],
"require": {
"ezyang/htmlpurifier": ">=4.5.0",
"ircmaxell/random-lib": "dev-master@dev",
"ircmaxell/security-lib": "dev-master@dev",
"dflydev/markdown": ">=1.0.2",
"mjohnson/decoda": ">=5.1.2",
"zendframework/zend-uri": "2.2.*"
},
"require-dev": {
"mockery/mockery": "dev-master@dev"
},
"autoload": {
"psr-0": { "SecurityMultiTool": "library/" }
}
}