-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.81 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
60
61
62
63
64
65
{
"name": "code-lts/cli-tools",
"description": "CLI tools to manage output errors formatting for junit, checkstyle, teamcity, gitlab and github error formats",
"type": "library",
"license": "MPL-2.0",
"homepage": "https://github.com/code-lts/cli-tools",
"readme": "https://github.com/code-lts/cli-tools/blob/main/README.md",
"keywords": [
"cli",
"formatters",
"junit",
"checkstyle",
"teamcity",
"gitlab",
"github"
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/code-lts/cli-tools/issues",
"source": "https://github.com/code-lts/cli-tools"
},
"authors": [
{
"name": "William Desportes",
"email": "[email protected]",
"homepage": "https://williamdes.eu"
},
{
"name": "Ondřej Mirtes",
"email": "[email protected]",
"homepage": "https://ondrej.mirtes.cz"
}
],
"scripts": {
"test": "@php ./vendor/bin/phpunit",
"phpstan": "@php ./vendor/bin/phpstan",
"phpcs": "@php ./vendor/bin/phpcs",
"phpcbf": "@php ./vendor/bin/phpcbf"
},
"require": {
"php": "^7.2 || ^8.0",
"ondram/ci-detector": "^4.0",
"symfony/console": "^5 || ^6 || ^7"
},
"require-dev": {
"phpunit/phpunit": "^8 || ^9 || ^10|| ^11",
"phpstan/phpstan": "^1.4.6",
"wdes/coding-standard": "^3.2"
},
"autoload": {
"psr-4": {
"CodeLts\\CliTools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodeLts\\CliTools\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}