-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
72 lines (72 loc) · 2.02 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
{
"name": "worksome/coding-style",
"description": "Worksomes coding style",
"type": "composer-plugin",
"require": {
"php": "^8.2",
"composer-plugin-api": "^2.0",
"canvural/larastan-strict-rules": "^2.1.10",
"jetbrains/phpstorm-attributes": "^1.0",
"larastan/larastan": "^2.9.7",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-mockery": "^1.1.2",
"rector/rector": "^1.0",
"slevomat/coding-standard": "^8.14.1",
"spaze/phpstan-disallowed-calls": "^2.16",
"symplify/easy-coding-standard": "^12.1.10",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"composer/composer": "^2.7",
"friendsofphp/php-cs-fixer": "^3.53",
"orchestra/testbench": "^9.5",
"pestphp/pest": "^2.34",
"spatie/invade": "^1.1.1",
"squizlabs/php_codesniffer": "^3.8"
},
"autoload": {
"psr-4": {
"Worksome\\CodingStyle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Worksome\\CodingStyle\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Oliver Nybroe",
"email": "[email protected]"
},
{
"name": "Owen Voke",
"email": "[email protected]"
}
],
"extra": {
"class": "Worksome\\CodingStyle\\Plugin"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"scripts": {
"lint": "ecs --fix",
"test:lint": "ecs",
"test:phpstan": "pest --testsuite phpstan",
"test:rector": "pest --testsuite rector",
"test:phpcsfixer": "pest --testsuite phpcsfixer",
"test:phpcs": "pest --testsuite phpcs",
"test": [
"@test:phpstan",
"@test:rector",
"@test:phpcsfixer",
"@test:phpcs"
]
}
}