-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.66 KB
/
Copy pathcomposer.json
File metadata and controls
69 lines (69 loc) · 1.66 KB
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
{
"name": "croct/coding-standard",
"description": "A set of Code Sniffer rules applied to all Croct PHP projects.",
"license": "MIT",
"type": "phpcodesniffer-standard",
"keywords": [
"croct",
"coding",
"standard",
"phpcs"
],
"authors": [
{
"name": "Croct",
"email": "lib+coding-standard-php@croct.com",
"homepage": "https://croct.com"
}
],
"homepage": "https://github.com/croct-tech/coding-standard-php",
"support": {
"issues": "https://github.com/croct-tech/coding-standard-php/issues",
"source": "https://github.com/croct-tech/coding-standard-php"
},
"require": {
"php": "^8.5",
"slevomat/coding-standard": "^8.28",
"squizlabs/php_codesniffer": "^4.0.2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.28",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^13.1"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Croct\\": "src/Croct/"
}
},
"autoload-dev": {
"psr-4": {
"Croct\\Tests\\": "tests/"
},
"files": [
"vendor/squizlabs/php_codesniffer/autoload.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"test": [
"composer validate",
"composer normalize --dry-run",
"mkdir -p .cache",
"phpcs",
"phpstan analyse",
"./run-sniffs-tests.sh"
]
}
}