-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.07 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
{
"name": "phant/auth",
"description": "Manage auth easily",
"license": "MIT",
"keywords": ["auth manager", "auth component", "SimpleAuth"],
"authors": [
{
"name": "Lenny ROUANET",
"email": "lennyrouanet@users.noreply.github.com"
}
],
"require": {
"php": ">=8.1",
"phant/data-structure": "4.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.*",
"psr/simple-cache": "3.*",
"phpstan/phpstan": "1.*",
"phpunit/phpunit": "9.*",
"phant/cache": "2.*"
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix ./ --rules=@PSR12",
"analyse": "vendor/bin/phpstan analyse component --memory-limit=4G",
"test": "vendor/bin/phpunit test --testdox",
"coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit test --coverage-html .coverage/html"
},
"autoload": {
"psr-4": {
"Phant\\Auth\\": "component/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "test/"
}
}
}