-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 1007 Bytes
/
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
{
"name": "justcoded/php-code-analysis-tool",
"description": "Automatically check and fix PHP code. We need composer.json to install dependencies and allow IDE to help us with maintaining ecs.php",
"type": "project",
"require": {
"symplify/coding-standard": "^12.0",
"symplify/easy-coding-standard": "^12.0",
"friendsofphp/php-cs-fixer": "^3.41",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.17",
"squizlabs/php_codesniffer": "^3.8",
"slevomat/coding-standard": "^8.14"
},
"license": "MIT",
"authors": [
{
"name": "Roman Ihoshyn",
"email": "igoshin18@gmail.com"
}
],
"autoload": {
"psr-4": {
"JustCoded\\PhpCodeAnalysisTool\\": "/src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"version": "0.5.9"
}