-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 788 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 788 Bytes
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
{
"name": "smmccabe/phpdebt",
"description": "App that uses a few code health tools to give an estimated technical debt score.",
"type": "project",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Shawn McCabe",
"email": "smccabe@acromediainc.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/smmccabe/PHP_CodeSniffer.git"
}
],
"require": {
"squizlabs/php_codesniffer": "dev-api-friendly as 3.x-dev",
"drupal/coder": "8.3.13",
"phpmd/phpmd": "^2.13",
"phploc/phploc": "^7.0",
"symfony/finder": "^6.2"
},
"require-dev": {
"clue/phar-composer": "^1.1"
},
"bin": ["src/index.php"]
}