-
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.59 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.59 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": "stromcom/auth-client",
"description": "Official PHP client for the STROMCOM SSO / OAuth 2.0 / OIDC server (auth.stromcom.cz).",
"type": "library",
"license": "MIT",
"keywords": ["stromcom", "sso", "oauth2", "oidc", "auth", "jwt", "client"],
"homepage": "https://auth.stromcom.cz",
"require": {
"php": "^8.3",
"ext-curl": "*",
"ext-json": "*",
"ext-openssl": "*",
"lcobucci/jwt": "^5.5"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "^3.94"
},
"scripts": {
"test:unit": "phpunit",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.dist.neon --memory-limit=512M",
"cs": "php-cs-fixer fix --dry-run --diff --cache-file=tmp/php-cs-fixer.cache",
"cs-fix": "php-cs-fixer fix --cache-file=tmp/php-cs-fixer.cache",
"test": [
"@test:unit"
],
"ca": [
"@phpstan",
"@test"
]
},
"autoload": {
"psr-4": {
"Stromcom\\AuthClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stromcom\\AuthClient\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Petr Bíža",
"email": "petr.biza@stromcom.cz"
}
],
"support": {
"issues": "https://github.com/stromcom/php-auth-client/issues",
"source": "https://github.com/stromcom/php-auth-client"
},
"minimum-stability": "stable",
"config": {
"sort-packages": true
}
}