-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
54 lines (52 loc) · 1.38 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
{
"name": "simplesamlphp/assert",
"description": "A wrapper around webmozart/assert to make it useful beyond checking method arguments",
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Tim van Dijen",
"email": "[email protected]"
},
{
"name": "Jaime Perez Crespo",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-date": "*",
"ext-filter": "*",
"ext-pcre": "*",
"ext-spl": "*",
"league/uri-interfaces": "^7.4",
"webmozart/assert": "^1.11"
},
"require-dev": {
"ext-intl": "*",
"simplesamlphp/simplesamlphp-test-framework": "^1.7"
},
"autoload": {
"psr-4": {
"SimpleSAML\\Assert\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\Assert\\": "tests/Assert/",
"SimpleSAML\\Test\\Utils\\": "tests/Utils/"
}
},
"extra": {
"branch-alias": {
"dev-master": "v1.1.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"simplesamlphp/composer-module-installer": false,
"phpstan/extension-installer": true
}
}
}