-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.2 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.2 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
{
"name": "plook/type-guard",
"type": "library",
"description": "Library to ensure correctness of types with a readable interface.",
"license": "LGPL-2.1-or-later",
"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/phpstan-rules": "^2.8.0",
"thecodingmachine/phpstan-safe-rule": "^1.4.0",
"phpstan/phpstan-phpunit": "^2.0.6",
"squizlabs/php_codesniffer": "^3.12.2",
"phpstan/phpstan": "^2.1.14",
"phpstan/phpstan-strict-rules": "^2.0.4",
"phpunit/phpunit": "^12.1.4",
"rector/rector": "^2.0.15"
},
"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
}
}
}