-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.23 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
{
"name": "kreta/php-cs-fixer-config",
"description": "PHP linting tool using PHP CS Fixer for Kreta packages",
"keywords": [
"project",
"manager",
"development",
"tool",
"php-linter",
"php-cs-fixer"
],
"homepage": "http://kreta.io",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Beñat Espiña Diaz",
"email": "[email protected]",
"homepage": "http://benatespina.com"
},
{
"name": "Gorka Laucirica Ibarra",
"email": "[email protected]",
"homepage": "http://gorkalaucirica.net"
}
],
"require": {
"php": "^7.1",
"friendsofphp/php-cs-fixer": "^2.1.0"
},
"require-dev": {
"phpspec/phpspec": "^3.2"
},
"scripts": {
"cs": [
"php-cs-fixer fix --config=.php_cs -v",
"php-cs-fixer fix --config=.phpspec_cs -v"
]
},
"autoload": {
"psr-4": {
"Kreta\\PhpCsFixerConfig\\": "src/Kreta/PhpCsFixerConfig/",
"Kreta\\PhpCsFixerConfig\\Tests\\": "tests/"
},
"exclude-from-classmap": [
"tests/"
]
}
}