-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
53 lines (53 loc) · 1.7 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "safire-ac-za/simplesamlphp-module-sqlattribs",
"description": "SimpleSAMLphp module to provide additional attributes from a SQL database",
"type": "simplesamlphp-module",
"keywords": ["simplesamlphp", "sqlattribs", "PDO", "SQL"],
"license": "MIT",
"authors": [
{
"name": "Guy Halse",
"homepage": "http://orcid.org/0000-0002-9388-8592"
}
],
"config": {
"preferred-install": {
"simplesamlphp/simplesamlphp": "source",
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"simplesamlphp/composer-module-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"require": {
"php": "^8.0",
"simplesamlphp/assert": "^0.8.0 || ^1.0.0",
"ext-pdo": "^8.0"
},
"require-dev": {
"simplesamlphp/simplesamlphp": ">=2.0.0 <2.3.0",
"simplesamlphp/simplesamlphp-test-framework": "^1.5.1"
},
"suggest": {
"ext-mysql": "Needed if a MySQL backend is used",
"ext-pgsql": "Needed if a PostgreSQL backend is used"
},
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\sqlattribs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\Utils\\": "vendor/simplesamlphp/simplesamlphp/tests/Utils"
}
},
"support": {
"issues": "https://github.com/tenet-ac-za/simplesamlphp-module-sqlattribs/issues",
"source": "https://github.com/tenet-ac-za/simplesamlphp-module-sqlattribs"
}
}