-
Notifications
You must be signed in to change notification settings - Fork 59
/
composer.json
33 lines (33 loc) · 1.08 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
{
"name": "escapestudios/wsse-authentication-bundle",
"type": "symfony-bundle",
"description": "Symfony2 bundle to implement WSSE authentication",
"keywords": ["wsse", "authentication", "bundle"],
"homepage": "https://github.com/djoos/EscapeWSSEAuthenticationBundle",
"license": "MIT",
"authors": [
{
"name": "David Joos",
"email": "[email protected]"
},
{
"name": "Community contributors",
"homepage": "https://github.com/djoos/EscapeWSSEAuthenticationBundle/graphs/contributors"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.9",
"symfony/framework-bundle": "~2.3|~3.0",
"symfony/security-bundle": "~2.3|~3.0",
"doctrine/common": "~2.2"
},
"require-dev": {
"symfony/finder": "~2.3|~3.0",
"symfony/phpunit-bridge": "~2.7|~3.0"
},
"autoload": {
"psr-0": { "Escape\\WSSEAuthenticationBundle": "" }
},
"target-dir": "Escape/WSSEAuthenticationBundle"
}