-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
50 lines (50 loc) · 1.33 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
{
"name": "canvural/larastan-strict-rules",
"type": "phpstan-extension",
"description": "Extra strict and opinionated PHPStan rules for Laravel.",
"license": [
"MIT"
],
"require": {
"php": "^8.0",
"larastan/larastan": "^2.9.12",
"phpstan/phpstan": "^1.12"
},
"require-dev": {
"doctrine/coding-standard": "^12",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.6 || ^10",
"orchestra/testbench": "^v7.47.0 || ^8.13.0 || ^9.0.9",
"roave/security-advisories": "dev-latest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"autoload": {
"psr-4": {
"Vural\\LarastanStrictRules\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"codestyle": "vendor/bin/phpcs",
"phpstan": "vendor/bin/phpstan analyse --ansi",
"test": "vendor/bin/phpunit --configuration tests/phpunit.xml",
"test-coverage": "vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-clover=.build/phpunit/clover.xml",
"test-mutation": "vendor/bin/infection --ignore-msi-with-no-mutations --min-covered-msi=70 --min-msi=70"
}
}