-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
42 lines (42 loc) · 1.04 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
{
"name": "danielbachhuber/composer-lock-updater",
"description": "Run composer-lock-updater in your CI system for bot-powered composer.lock pull requests.",
"license": "MIT",
"authors": [
{
"name": "Daniel Bachhuber",
"email": "[email protected]"
}
],
"require": {},
"require-dev": {
"satooshi/php-coveralls": "~1",
"phpunit/php-code-coverage": "~2|~4",
"squizlabs/php_codesniffer": "^2.7"
},
"bin": [
"bin/clu"
],
"autoload": {
"psr-4": {"CLU\\": "src/"}
},
"scripts": {
"lint": "find src -name '*.php' -exec php -l {} \\;",
"cs": "phpcs -n src",
"cbf": "phpcbf -n src",
"unit": "echo tbd: phpunit --colors=always",
"test": [
"@unit",
"@cs",
"@lint"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "5.6"
}
}
}