-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
47 lines (47 loc) · 1.42 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
{
"name": "vladyslavstartsev/laravel-strict-coding-standard",
"type": "phpcodesniffer-standard",
"description": "PHP_CodeSniffer rules for Laravel to force the \"right\" design of the app",
"homepage": "https://github.com/vladyslavstartsev/laravel-strict-coding-standard",
"license": "MIT",
"authors": [
{
"name": "Vladyslav Startsev",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 || ^8",
"laravel/framework": "^7.30 || ^8.40.0 || ^9 || ^10",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.6.0"
},
"require-dev": {
"doctrine/coding-standard": "^8.0",
"ergebnis/composer-normalize": "^2.2",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^0.12.32",
"phpstan/phpstan-phpunit": "^0.12.11",
"phpstan/phpstan-strict-rules": "0.12.2",
"phpunit/phpunit": "^9",
"vimeo/psalm": "^3.8"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"LaravelStrictCodingStandard\\": "LaravelStrictCodingStandard"
}
},
"autoload-dev": {
"psr-4": {
"LaravelStrictCodingStandard\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check-code": "vendor/bin/parallel-lint --exclude vendor . && ./vendor/bin/phpunit && ./vendor/bin/psalm && ./vendor/bin/phpstan analyse && ./vendor/bin/phpcs --standard=build/phpcs.xml"
}
}