-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.27 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.27 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
{
"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.2"
},
"require-dev": {
"brainbits/phpcs-standard": "^7.0.2 || ^8.0.0",
"brainbits/phpstan-rules": "^3.1.2",
"ergebnis/phpstan-rules": "^2.5.2",
"thecodingmachine/phpstan-safe-rule": "^1.2.0",
"thecodingmachine/phpstan-strict-rules": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.4.2",
"squizlabs/php_codesniffer": "^3.11.3",
"phpstan/phpstan": "^1.12.19",
"phpstan/phpstan-strict-rules": "^1.6.2",
"phpunit/phpunit": "^11.5.10",
"rector/rector": "^1.2.10"
},
"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
}
}
}