-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.04 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
{
"name": "prinsfrank/larastan-architecture-rules",
"type": "library",
"license": "MIT",
"description": "Architecture rules for Laravel applications",
"keywords": ["static analysis", "phpstan", "laravel", "php", "package", "code analysis"],
"autoload": {
"psr-4": {
"PrinsFrank\\LarastanArchitectureRules\\": "src/"
}
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"require": {
"php": "^8.0",
"nunomaduro/larastan": "^1.0.4 || ^2.4",
"phpstan/phpstan": "^1.9"
},
"require-dev": {
"nikic/php-parser": "^4.15",
"friendsofphp/php-cs-fixer": "^3.13",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"cs": "php-cs-fixer fix --allow-risky=yes --dry-run",
"cs:fix": "php-cs-fixer fix --allow-risky=yes",
"stan": "phpstan analyse",
"unit": "phpunit --testsuite=Unit",
"test": [
"@unit",
"@cs"
]
}
}