forked from simplesamlphp/saml2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (38 loc) · 948 Bytes
/
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
{
"name": "simplesamlphp/saml2",
"description": "SAML2 PHP library from SimpleSAMLphp",
"license": "LGPL-2.1",
"authors": [
{
"name": "Andreas Åkre Solberg",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"ext-openssl": "*",
"ext-dom": "*",
"robrichards/xmlseclibs": "^2.0",
"psr/log": "~1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "~1.4",
"phpmd/phpmd": "~1.5",
"sensiolabs/security-checker": "~1.1",
"phpunit/phpunit": "~3.7",
"satooshi/php-coveralls": "~0.6.1",
"sebastian/phpcpd": "~1.4",
"mockery/mockery": "~0.9"
},
"autoload": {
"psr-0": {
"SAML2\\": "src/"
},
"files": ["src/_autoload.php"]
},
"autoload-dev": {
"psr-0": {
"SAML2\\": "tests/"
}
}
}