-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.37 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/openid",
"description": "OpenID Tools Library",
"type": "library",
"license": "LGPL-2.1",
"authors": [
{
"name": "Marko Ivančić",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"SimpleSAML\\OpenID\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\OpenID\\": "tests/src/"
}
},
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.8",
"psr/http-client": "^1",
"psr/http-message": "^2",
"psr/log": "^3",
"psr/simple-cache": "^3",
"web-token/jwt-library": "^3.4"
},
"require-dev": {
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "^3",
"vimeo/psalm": "^5",
"rector/rector": "^1",
"simplesamlphp/simplesamlphp-test-framework": "^1"
},
"config": {
"sort-packages": true,
"cache-dir": "build/composer",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"pre-commit": [
"vendor/bin/phpcs -p",
"vendor/bin/psalm --no-cache",
"vendor/bin/phpunit --no-coverage"
]
}
}