-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.48 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.48 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
58
59
60
61
{
"name": "dflydev/hawk",
"description": "Hawk",
"keywords": ["hawk", "authentication", "bewit"],
"license": "MIT",
"authors": [
{
"name": "Dragonfly Development Inc.",
"email": "[email protected]",
"homepage": "http://dflydev.com"
},
{
"name": "Beau Simensen",
"email": "[email protected]",
"homepage": "http://beausimensen.com"
}
],
"autoload": {
"psr-4": {
"Dflydev\\Hawk\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dflydev\\Hawk\\": "tests"
}
},
"require": {
"ircmaxell/random-lib": "^1.2",
"php": "^8.1"
},
"require-dev": {
"rector/rector": "^1.0",
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^11.0",
"squizlabs/php_codesniffer": "^3.9",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1"
},
"extra": {
"branch-alias": {
"dev-main": "2.0.x-dev"
}
},
"scripts": {
"check" : [
"@cs-check",
"@phpstan",
"@test"
],
"cs-check" : "phpcs --parallel=50",
"cs-fix" : "phpcbf",
"phpstan": "phpstan analyse",
"rector": [
"rector --config=rector.config.php",
"@cs-fix"
],
"test" : "phpunit"
}
}