-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 2.02 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
{
"name": "phauthentic/authentication",
"description": "A Framework agnostic Authentication library for PHP",
"keywords": [
"auth",
"authentication",
"middleware",
"library"
],
"require": {
"php": "^8.0",
"ext-json": "*",
"phauthentic/password-hashers": "^2.0",
"psr/http-factory": "^1.0",
"psr/http-message": "~1.0",
"psr/http-server-handler": "~1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"ext-pdo": "*",
"dms/phpunit-arraysubset-asserts": "^0.3.0",
"firebase/php-jwt": "6.*",
"misantron/dbunit": "dev-master",
"nyholm/psr7": "^1.8",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.9"
},
"suggest": {
"firebase/php-jwt": "If you want to use the JWT adapter add this dependency",
"ext-ldap": "Make sure this php extension is installed and enabled on your system if you want to use the built-in LDAP adapter for \"LdapIdentifier\"."
},
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Phauthentic\\Authentication\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phauthentic\\Authentication\\Test\\": "tests"
}
},
"authors": [
{
"name": "Florian Krämer"
}
],
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs --colors -p src/ tests/",
"cs-fix": "phpcbf --colors src/ tests/",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=clover.xml",
"phpmd": "bin/phpmd src/ text phpmd.xml.dist",
"phpmd-baseline": "bin/phpmd --generate-baseline --baseline-file phpmd.baseline.xml src/ text phpmd.xml.dist"
},
"config": {
"sort-packages": true,
"bin-dir": "bin"
}
}