-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·55 lines (55 loc) · 1.15 KB
/
composer.json
File metadata and controls
executable file
·55 lines (55 loc) · 1.15 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
{
"name": "contributte/qa",
"description": "Tuned & very strict coding standards for PHP projects. Trusted by Contributte, Apitte, Nettrine and many others.",
"keywords": [
"codesniffer",
"codestyle",
"contributte",
"qa",
"quality assurance"
],
"type": "phpcodesniffer-standard",
"license": [
"MIT"
],
"homepage": "https://github.com/contributte/qa",
"authors": [
{
"name": "Milan Felix Šulc",
"homepage": "https://f3l1x.io"
}
],
"require": {
"php": ">=8.2",
"slevomat/coding-standard": "^8.25.1",
"squizlabs/php_codesniffer": "^4.0.1"
},
"require-dev": {
"brianium/paratest": "^7.0",
"contributte/phpunit": "^0.2.0",
"nette/utils": "^4.0",
"symfony/process": "^6.0.0",
"nette/robot-loader": "^4.1.0"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/codesniffer",
"bin/codefixer"
],
"extra": {
"branch-alias": {
"dev-master": "0.5.x-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}