forked from simplesamlphp/simplesamlphp-module-sqlauth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.6 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.6 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "exeba/simplesamlphp-module-hashsqlauth",
"description": "This is a authentication module for authenticating a user against a SQL database",
"type": "simplesamlphp-module",
"keywords": ["simplesamlphp", "sqlauth", "hash"],
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Olav Morken",
"email": "olavmrk@gmail.com"
},
{
"name": "Sebastiano Degan",
"email": "sebdeg87@gmail.com"
}
],
"config": {
"preferred-install": {
"simplesamlphp/simplesamlphp": "source",
"*": "dist"
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
"simplesamlphp/composer-module-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\hashsqlauth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\Utils\\": "vendor/simplesamlphp/simplesamlphp/tests/Utils"
}
},
"require": {
"php": ">=7.4 || ^8.0",
"ext-pdo": "*",
"simplesamlphp/assert": "^1.0.0",
"simplesamlphp/composer-module-installer": "^1.3.2",
"simplesamlphp/simplesamlphp": "^2.0"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "^1.2.1"
},
"support": {
"issues": "https://github.com/exeba/simplesamlphp-module-hashsqlauth/issues",
"source": "https://github.com/exeba/simplesamlphp-module-hashsqlauth"
}
}