-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
77 lines (77 loc) · 2.15 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
{
"name": "worksome/coding-style",
"description": "Worksomes coding style",
"type": "composer-plugin",
"require": {
"php": "^8.2",
"composer-plugin-api": "^2.0",
"canvural/larastan-strict-rules": "^3.0",
"larastan/larastan": "^3.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-mockery": "^2.0",
"rector/rector": "^2.0",
"slevomat/coding-standard": "^8.15",
"spaze/phpstan-disallowed-calls": "^4.0.1",
"symplify/easy-coding-standard": "^12.4"
},
"require-dev": {
"composer/composer": "^2.7",
"friendsofphp/php-cs-fixer": "^3.53",
"orchestra/testbench": "^9.5",
"pestphp/pest": "^3.0",
"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]"
},
{
"name": "Odinn Adalsteinsson",
"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"
]
},
"minimum-stability": "stable",
"prefer-stable": true
}