-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 1.78 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "hihaho/phpstan-rules",
"description": "Hihaho PHPStan rules according to the guidelines",
"homepage": "https://guidelines.hihaho.com",
"type": "phpstan-extension",
"license": "MIT",
"autoload": {
"psr-4": {
"Hihaho\\PhpstanRules\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"authors": [
{
"name": "Robert Boes",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"phpstan/phpstan": "^2.0",
"illuminate/support": "^10.48.23|^11.31"
},
"require-dev": {
"illuminate/console": "^10.48.23|^11.31",
"illuminate/http": "^10.48.23|^11.31",
"illuminate/mail": "^10.48.23|^11.31",
"illuminate/notifications": "^10.48.23|^11.31",
"illuminate/routing": "^10.48.23|^11.31",
"laravel/pint": "^1.13.9",
"nikic/php-parser": "^5.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^11.0",
"roave/security-advisories": "dev-latest",
"spatie/invade": "^2.0",
"spaze/phpstan-disallowed-calls": "^4.0"
},
"scripts": {
"test": "phpunit",
"fix-cs": "vendor/bin/pint",
"phpstan": "vendor/bin/phpstan analyse -v"
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
}
}