-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.59 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
{
"name": "northern-lights/hostsfile-parser",
"description": "Hosts file parser",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "xZero707",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"fzaninotto/faker": "^1.9",
"php-parallel-lint/php-console-highlighter": "^0.5.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpunit/php-invoker": "^3.0",
"phpunit/phpunit": "^9.2",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.5",
"symfony/var-dumper": "^5.1",
"vimeo/psalm": "^3.13"
},
"autoload": {
"psr-4": {
"NorthernLights\\HostsFileParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NorthernLights\\HostsFileParser\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"check-style": "phpcs -p --standard=PSR12 --ignore=vendor --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 .",
"fix-style": "phpcbf -p --standard=PSR12 --ignore=vendor --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 .",
"php-lint": "parallel-lint . -s --blame --exclude vendor -p php",
"psalm-analyze": "psalm --show-info=true"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}