-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.41 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "toobo/type-checker",
"description": "Library to check values against PHP types, is_a() on steroids.",
"keywords": [
"type",
"types",
"type check",
"is_a",
"instanceof",
"instance of"
],
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"require": {
"php": ">=8.1 < 8.4"
},
"require-dev": {
"phpunit/phpunit": "^10.5.20",
"inpsyde/php-coding-standards": "^2",
"vimeo/psalm": "^5.24.0"
},
"autoload": {
"psr-4": {
"Toobo\\TypeChecker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Toobo\\TypeChecker\\Tests\\": [
"tests/src/",
"tests/cases/"
]
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"composer/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"psalm": "@php ./vendor/vimeo/psalm/psalm --no-suggestions --report-show-info=false --find-unused-psalm-suppress --no-diff --no-cache --no-file-cache --output-format=compact",
"tests": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage",
"qa": [
"@cs",
"@psalm",
"@tests"
]
}
}