-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.05 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.05 KB
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
{
"name": "cirrusidentity/simplesamlphp-module-cirrusgeneral",
"description": "SSP Module of various filters developed by Cirrus Identity",
"type": "simplesamlphp-module",
"keywords" : ["simplesamlphp"],
"license" : "LGPL-2.1-only",
"platform": {
"php": "7.4"
},
"require": {
"php" : ">=7.4",
"simplesamlphp/composer-module-installer": "^1.1",
"simplesamlphp/simplesamlphp": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"cirrusidentity/simplesamlphp-test-utils": "v2.x-dev",
"simplesamlphp/simplesamlphp-test-framework": "^1",
"ext-tidy": "*",
"squizlabs/php_codesniffer": "*",
"vimeo/psalm": "^5.8"
},
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\cirrusgeneral\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\SimpleSAML\\": "tests/lib/"
}
},
"config": {
"allow-plugins": {
"simplesamlphp/composer-module-installer": true
}
}
}