-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
72 lines (72 loc) · 2.1 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
66
67
68
69
70
71
72
{
"name": "sweetchuck/robo-phpcs",
"type": "robo-tasks",
"description": "Robo task wrapper for PHPCS",
"keywords": [
"robo-tasks",
"phpcs",
"PHP_CodeSniffer"
],
"authors": [
{
"name": "Andor",
"role": "Maintainer",
"homepage": "https://github.com/Sweetchuck"
}
],
"homepage": "https://github.com/Sweetchuck/robo-phpcs",
"support": {
"source": "https://github.com/Sweetchuck/robo-phpcs",
"issues": "https://github.com/Sweetchuck/robo-phpcs/issues"
},
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"sweetchuck/git-hooks": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"repositories": {
"nuvoleweb/robo-config": {
"type": "github",
"url": "https://github.com/Sweetchuck/robo-config.git"
}
},
"require": {
"php": ">=8.3",
"ext-dom": "*",
"ext-json": "*",
"sweetchuck/lint-report": "1.x-dev",
"consolidation/robo": "^5.0",
"symfony/filesystem": "^6.0 || ^7.0"
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"mikey179/vfsstream": "^1.6",
"nuvoleweb/robo-config": "4.x-dev",
"squizlabs/php_codesniffer": "^3.0",
"sweetchuck/codeception-module-robo-task-runner": "4.x-dev",
"sweetchuck/git-hooks": "2.x-dev",
"sweetchuck/robo-git": "4.x-dev",
"symfony/error-handler": "^6.2 || ^7.0",
"symfony/yaml": "^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Sweetchuck\\Robo\\Phpcs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sweetchuck\\Robo\\Phpcs\\Tests\\Acceptance\\": "tests/acceptance/",
"Sweetchuck\\Robo\\Phpcs\\Tests\\Unit\\": "tests/unit/",
"Sweetchuck\\Robo\\Phpcs\\Tests\\": "tests/_support/"
}
},
"scripts": {},
"scripts-descriptions": {}
}