-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.16 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.16 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
39
40
{
"name": "sourcecubeltd/simplesamlphp-module-sqlattribslookup",
"description": "SimpleSAMLphp module to provide additional attributes via SQL lookup",
"type": "simplesamlphp-module",
"keywords": ["simplesamlphp", "sqlattribslookup", "PDO", "SQL"],
"license": "MIT",
"authors": [
{
"name": "Aaron Parker",
"homepage": "https://www.sourcecube.co.uk"
}
],
"require": {
"php": ">=5.6",
"simplesamlphp/composer-module-installer": "^1.1"
},
"require-dev": {
"simplesamlphp/simplesamlphp": ">=1.17",
"phpunit/phpunit": "~5.7"
},
"suggest": {
"ext-pdo": "Needed for database backend",
"ext-mysql": "Needed if a MySQL backend is used",
"ext-pgsql": "Needed if a PostgreSQL backend is used"
},
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\sqlattribs\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\Utils\\": "vendor/simplesamlphp/simplesamlphp/tests/Utils"
}
},
"support": {
"issues": "https://github.com/sourcecubeltd/simplesamlphp-module-sqlattribslookup/issues",
"source": "https://github.com/sourcecubeltd/simplesamlphp-module-sqlattribslookup"
}
}