-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
43 lines (43 loc) · 923 Bytes
/
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
{
"name": "malukenho/docheader",
"description": "A small library to check header docs",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/malukenho/docheader",
"keywords": [
"license",
"code standard",
"code style",
"static analysis"
],
"authors": [
{
"name": "Jefersson Nathan",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"DocHeader\\": "src/"
}
},
"require": {
"php": "^8.0",
"symfony/console": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"doctrine/coding-standard": "^9.0",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.23 || ^5.0",
"mikey179/vfsstream": "^1.6.10"
},
"bin": [
"bin/docheader"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}