forked from sebastianbergmann/phploc
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
45 lines (45 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
43
44
45
{
"name": "cmgmyr/phploc",
"description": "A tool for quickly measuring the size of a PHP project.",
"homepage": "https://github.com/cmgmyr/phploc",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Chris Gmyr",
"email": "[email protected]",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/cmgmyr/phploc/issues"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": "^7.4 || ^8.0",
"ext-dom": "*",
"ext-json": "*",
"sebastian/cli-parser": "^1.0|^2.0|^3.0",
"phpunit/php-file-iterator": "^3.0|^4.0|^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"phpunit/phpunit": "^9.0|^10.0",
"vimeo/psalm": "^5.7"
},
"autoload": {
"classmap": [
"src/"
]
},
"bin": [
"phploc"
],
"extra": {
"branch-alias": {
"dev-main": "8.0-dev"
}
}
}