-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.74 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.74 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
62
63
64
65
{
"name": "plook/type-guard",
"description": "Library to ensure correctness of types with a readable interface.",
"license": "LGPL-2.1-or-later",
"type": "library",
"authors": [
{
"name": "Phillip Look",
"email": "phillip-github@gmx-topmail.de"
}
],
"require": {
"php": "^8.3"
},
"require-dev": {
"brainbits/phpcs-standard": "^8.0.0",
"brainbits/phpstan-rules": "^4.0.0",
"ergebnis/composer-normalize": "^2.47",
"ergebnis/phpstan-rules": "^2.11.0",
"phpstan/phpstan": "^2.1.22",
"phpstan/phpstan-phpunit": "^2.0.7",
"phpstan/phpstan-strict-rules": "^2.0.6",
"phpunit/phpunit": "^12.3.6",
"rector/rector": "^2.1.4",
"squizlabs/php_codesniffer": "^3.13.2",
"thecodingmachine/phpstan-safe-rule": "^1.4.1"
},
"autoload": {
"psr-4": {
"Plook\\TypeGuard\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Plook\\Tests\\TypeGuard\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyze",
"check": [
"@cs",
"@analyse",
"@test",
"@rector"
],
"cs": "vendor/bin/phpcs",
"cs:fix": "vendor/bin/phpcbf",
"fix": [
"@rector:fix",
"@cs:fix"
],
"rector": "vendor/bin/rector --dry-run",
"rector:fix": "vendor/bin/rector",
"test": "phpunit"
}
}