-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.53 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.53 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
47
48
49
50
51
52
53
54
55
{
"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/",
"Illuminate\\Foundation\\Http\\": "tests/stubs/Illuminate/Foundation/Http",
"App\\Http\\Controllers\\": "tests/stubs/App/Http/Controllers",
"App\\Http\\Requests\\": "tests/stubs/App/Http/Requests"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"authors": [
{
"name": "Robert Boes",
"email": "2871897+RobertBoes@users.noreply.github.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"phpstan/phpstan": "^1.11.0",
"illuminate/support": "^10|^11",
"laravel/pint": "^1.13.9"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"nikic/php-parser": "^5.0",
"spatie/invade": "^2.0",
"illuminate/http": "^10|^11",
"illuminate/console": "^10|^11",
"illuminate/mail": "^10|^11",
"illuminate/notifications": "^10|^11",
"illuminate/routing": "^10|^11",
"roave/security-advisories": "dev-latest"
},
"scripts": {
"test": "phpunit",
"fix-cs": "vendor/bin/pint"
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
}
}