This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
78 lines (78 loc) · 2.45 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "narrowspark/coding-standard",
"type": "library",
"description": "The Narrowspark Coding Standard is a set of phpstan, psalm, infection, rector and php-cs-fixer rules applied to all Narrowspark projects.",
"keywords": [
"narrowspark",
"cs",
"cs-fixer",
"config",
"php-cs-fixer",
"phpstan",
"psalm",
"coding-standard",
"rector"
],
"homepage": "https://github.com/narrowspark/coding-standard",
"license": "MIT",
"authors": [
{
"name": "Daniel Bannert",
"email": "[email protected]",
"homepage": "http://www.anolilab.de",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"infection/infection": "^0.22.0",
"narrowspark/php-cs-fixer-config": "~6.3.2",
"phpstan/phpstan": "^0.12.80",
"phpstan/phpstan-deprecation-rules": "^0.12.6",
"phpstan/phpstan-mockery": "^0.12.12",
"phpstan/phpstan-phpunit": "^0.12.17",
"phpstan/phpstan-strict-rules": "^0.12.9",
"psalm/plugin-mockery": "~0.7.0",
"psalm/plugin-phpunit": "^0.15.1",
"rector/rector": "^0.10.0",
"rector/rector-phpunit": "^0.10.0",
"slam/phpstan-extensions": "^5.1.0",
"symplify/phpstan-rules": "^9.2",
"thecodingmachine/phpstan-strict-rules": "^0.12.1",
"vimeo/psalm": "^4.6.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5.2",
"symfony/var-exporter": "^5.2.3"
},
"suggest": {
"phpstan/phpstan-doctrine": "Doctrine extensions for PHPStan (*)",
"phpstan/phpstan-php-parser": "PHP-Parser extensions for PHPStan (*)"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "5.3-dev"
}
},
"autoload-dev": {
"psr-4": {
"": "bin"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"build": "\\CreatePhpCsFixerList::build",
"cs": "php-cs-fixer fix --config=\"./.php_cs\" --ansi",
"cs:check": "php-cs-fixer fix --config=\"./.php_cs\" --ansi --dry-run",
"phpstan": "phpstan analyse -c ./base_rules.neon ./"
},
"support": {
"issues": "https://github.com/narrowspark/coding-standard/issues",
"source": "https://github.com/narrowspark/coding-standard"
}
}