-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (55 loc) · 1.75 KB
/
composer.json
File metadata and controls
56 lines (55 loc) · 1.75 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
53
54
55
56
{
"name": "simplesamlphp/simplesamlphp-test-framework",
"description": "Test framework for SimpleSAMLphp and related repositories ",
"type": "project",
"keywords": ["test-framework"],
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Tim van Dijen",
"email": "tvdijen@gmail.com"
}
],
"autoload": {
"psr-4": {
"SimpleSAML\\TestUtils\\": "lib/",
"SimpleSAML\\TestUtils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\TestUtils\\": "tests/src/"
}
},
"require": {
"php": "^8.3",
"ext-curl": "*",
"icanhazstring/composer-unused": "^0.9",
"maglnet/composer-require-checker": "^4.19",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-mockery": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^12.3",
"psr/log": "^3.0",
"slevomat/coding-standard": "^8.25",
"squizlabs/php_codesniffer": "^4.0",
"symfony/phpunit-bridge": "^8.0"
},
"require-dev": {
"simplesamlphp/simplesamlphp": "^2.5@dev"
},
"support": {
"issues": "https://github.com/simplesamlphp/simplesamlphp-test-framework/issues",
"source": "https://github.com/simplesamlphp/simplesamlphp-test-framework"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"simplesamlphp/composer-module-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"simplesamlphp/composer-xmlprovider-installer": true
}
}
}