-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
73 lines (73 loc) · 1.92 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "jasny/auth",
"description": "Authentication, authorization and access control for Slim Framework and other PHP micro-frameworks",
"keywords": [
"auth",
"slim",
"jwt",
"psr-7",
"psr-15"
],
"homepage": "https://www.jasny.net/auth/",
"license": "MIT",
"authors": [
{
"name": "Arnold Daniels",
"email": "arnold@jasny.net",
"homepage": "https://www.jasny.net/"
}
],
"require": {
"php": ">=8.2.0",
"improved/iterable": "^0.1.4",
"jasny/immutable": "^2.1",
"psr/clock": "^1.0",
"psr/event-dispatcher": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1",
"psr/http-server-middleware": "^1.0",
"psr/log": "^1.1"
},
"conflict": {
"hashids/hashids": "< 4.1",
"lcobucci/jwt": "< 4.0"
},
"require-dev": {
"ext-bcmath": "*",
"hashids/hashids": "^4.1 | ^5.0",
"jasny/phpunit-extension": "^0.5.1",
"lcobucci/clock": "^3.2",
"lcobucci/jwt": "^4.0 | ^5.0",
"phpstan/phpstan": "^1.12.0",
"phpunit/phpunit": "^11.3",
"squizlabs/php_codesniffer": "^3.10"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Jasny\\Auth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jasny\\Auth\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": [
"phpstan analyse",
"XDEBUG_MODE=coverage phpunit --testdox --colors=always --coverage-text",
"phpcs -p src"
]
},
"support": {
"issues": "https://github.com/jasny/auth/issues",
"source": "https://github.com/jasny/auth"
}
}