-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.47 KB
/
Copy pathcomposer.json
File metadata and controls
57 lines (57 loc) · 1.47 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
57
{
"name": "cicnavi/oidc-client-php",
"description": "OIDC client written in PHP",
"type": "library",
"require": {
"php": "^8.2",
"ext-gmp": "*",
"ext-json": "*",
"ext-openssl": "*",
"psr/http-client": "^1",
"psr/http-factory": "^1",
"psr/http-message": "^2",
"psr/log": "^3",
"psr/simple-cache": "^3",
"cicnavi/simple-file-cache-php": "^3",
"guzzlehttp/guzzle": "^7.8",
"simplesamlphp/openid": "^0"
},
"conflict": {
"rector/rector": "2.3.0"
},
"autoload": {
"psr-4": {
"Cicnavi\\Oidc\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cicnavi\\Tests\\Oidc\\": "tests/Oidc"
}
},
"license": "MIT",
"authors": [
{
"name": "Marko Ivancic",
"email": "cicnavi@gmail.com"
}
],
"minimum-stability": "stable",
"require-dev": {
"ext-xdebug": "*",
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^11",
"rector/rector": "^2",
"squizlabs/php_codesniffer": "^3"
},
"scripts": {
"pre-commit": [
"vendor/bin/phpcbf",
"vendor/bin/phpcs -p",
"vendor/bin/phpstan --memory-limit=1024M",
"vendor/bin/phpstan analyze -c phpstan-dev.neon --memory-limit=1024M",
"vendor/bin/rector --dry-run",
"vendor/bin/phpunit --no-coverage"
]
}
}