-
Notifications
You must be signed in to change notification settings - Fork 389
/
composer.json
60 lines (60 loc) · 1.52 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
55
56
57
58
59
60
{
"name": "jasny/sso",
"description": "Simple Single Sign-On",
"keywords": ["sso", "auth"],
"license": "MIT",
"homepage": "https://github.com/jasny/sso/wiki",
"authors": [
{
"name": "Arnold Daniels",
"email": "[email protected]",
"homepage": "http://www.jasny.net"
}
],
"support": {
"issues": "https://github.com/jasny/sso/issues",
"source": "https://github.com/jasny/sso"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"jasny/immutable": "^2.1",
"psr/simple-cache": "*",
"psr/log": "*"
},
"require-dev": {
"phpstan/phpstan": "^0.12.59",
"codeception/codeception": "^4.1",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-rest": "^1.2",
"desarrolla2/cache": "^3.0",
"jasny/http-message": "^1.3",
"jasny/php-code-quality": "^2.6.0",
"jasny/phpunit-extension": "^0.3.2",
"yubb/loggy": "^2.1"
},
"autoload": {
"psr-4": {
"Jasny\\SSO\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jasny\\Tests\\SSO\\": "tests/unit/"
}
},
"scripts": {
"test": [
"phpstan analyse",
"codecept run",
"phpcs -p src"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}