-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 791 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 791 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
26
{
"name": "cirrusidentity/simplesamlphp-test-utils",
"description": "Utilities to aid in testing simpleSAMLphp modules",
"keywords" : ["simplesamlphp"],
"license" : "LGPL-2.1-only",
"_notes": ["Aspect mock issue https://github.com/Codeception/AspectMock/issues/146 causes us to downgrade goaop/framework"],
"require": {
"php" : ">=7.2",
"simplesamlphp/simplesamlphp": ">=1.18",
"codeception/aspect-mock": "3.1.*"
},
"require-dev": {
"phpunit/phpunit": "8",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"CirrusIdentity\\SSP\\Test\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CirrusIdentity\\SSP\\Test\\": "tests/src/"
}
}
}