-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.1 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
{
"name": "forrest79/phpstan-narrow-types",
"description": "PHPStanNarrowTypes provides functionality to narrow complex array/list types with assert.",
"keywords": ["phpstan", "narrow", "type", "array", "list"],
"type": "phpstan-extension",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Jakub Trmota",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"phpstan/phpstan": "^2.0",
"nikic/php-parser": "^5.0"
},
"require-dev": {
"forrest79/phpcs": "^1.5",
"forrest79/phpcs-ignores": "^0.5",
"phpstan/phpstan-strict-rules": "^2.0"
},
"autoload": {
"psr-4": {
"Forrest79\\": "src"
},
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": {
"Forrest79\\PHPStanNarrowTypes\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "vendor/bin/phpcs --bootstrap=vendor/forrest79/phpcs-ignores/src/bootstrap.php -s src tests",
"phpstan": "vendor/bin/phpstan analyse src tests -v",
"tests": "php tests/run-tests.php"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}