-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
60 lines (60 loc) · 1.76 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
54
55
56
57
58
59
60
{
"name": "windhamg/simplesamlphp-module-msverifiedid",
"description": "This module provides an authentication module that uses Microsoft Entra Verified ID",
"type": "simplesamlphp-module",
"keywords": [
"simplesamlphp",
"msverifiedid",
"verifiedid"
],
"license": "LGPL-2.1-only",
"authors": [
{
"name": "Gary Windham",
"email": "[email protected]"
}
],
"config": {
"preferred-install": {
"simplesamlphp/simplesamlphp": "source",
"*": "dist"
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
"simplesamlphp/composer-module-installer": true
}
},
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\msverifiedid\\": "src/"
}
},
"require": {
"php": ">=7.4 || ^8.0",
"simplesamlphp/assert": "~0.8.0",
"simplesamlphp/simplesamlphp": "^2.0.0-rc2",
"simplesamlphp/composer-module-installer": "^1.2.0",
"ext-json": "*",
"thenetworg/oauth2-azure": "^2.1",
"ramsey/uuid": "^4.6"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"cirrusidentity/simplesamlphp-test-utils": "v2.x-dev",
"simplesamlphp/simplesamlphp-test-framework": "~1.2.1"
},
"support": {
"issues": "https://github.com/windhamg/simplesamlphp-module-msverifiedid/issues",
"source": "https://github.com/windhamg/simplesamlphp-module-msverifiedid"
},
"scripts": {
"validate": [
"vendor/bin/phpunit --no-coverage",
"vendor/bin/phpcs -p",
"vendor/bin/psalm"
],
"tests": [
"vendor/bin/phpunit --no-coverage"
]
}
}