forked from drupalauth/simplesamlphp-module-drupalauth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.1 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
{
"name": "drupalauth/simplesamlphp-module-drupalauth",
"description": "A SimpleSAMLphp module adding support for Drupal as the authentication source.",
"homepage": "https://github.com/drupalauth/simplesamlphp-module-drupalauth",
"type": "simplesamlphp-module",
"keywords": [
"SimpleSAMLphp",
"Drupal",
"Authentication"
],
"license": "LGPL-2.1",
"authors": [
{
"name": "Steve Moitozo",
"email": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/drupalauth/simplesamlphp-module-drupalauth/graphs/contributors",
"role": "Contributors"
}
],
"require": {
"php": "^8.0",
"simplesamlphp/simplesamlphp": "^2.1",
"simplesamlphp/composer-module-installer": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0 | ^10.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload-dev": {
"classmap": ["src/", "tests/"]
},
"extra": {
"branch-alias": {
"dev-main": "2.10.x-dev"
}
},
"config": {
"allow-plugins": {
"simplesamlphp/composer-module-installer": true
}
}
}