-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
59 lines (59 loc) · 1.27 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
{
"name": "taptima/php-cs-fixer",
"description": "Taptima PHP-CS-Fixer fixers",
"license": "MIT",
"keywords": [
"php-cs-fixer",
"Code Quality"
],
"authors": [
{
"name": "Mark Tertishniy",
"email": "[email protected]",
"homepage": "https://taptima.ru",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"doctrine/inflector": "^1.0",
"friendsofphp/php-cs-fixer": "^2.18"
},
"require-dev": {
"webmozart/assert": "^1.3.0",
"twig/twig": "^2.11.3"
},
"autoload": {
"psr-4": {
"Taptima\\CS\\": "src/Taptima/CS"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"tests": [
"tests\\Runner::run",
"tests\\Orchestra::run"
],
"php-cs-fixer": [
"php-cs-fixer fix --dry-run -vvv --diff"
],
"lint": [
"@php-cs-fixer"
]
}
}