-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1007 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
44
{
"name": "horat1us/environment-config",
"description": "Environment Config class",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7"
},
"license": "MIT",
"authors": [
{
"name": "Alexander Letnikow",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4"
},
"autoload": {
"psr-4": {
"Horat1us\\Environment\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Horat1us\\Environment\\Tests\\": "tests/"
}
},
"config": {
"process-timeout": 1800,
"sort-packages": true,
"platform": {
"php": "7.4"
}
},
"scripts": {
"lint": "./vendor/bin/phpcs --standard=PSR2 ./src ./tests",
"phpcbf": "./vendor/bin/phpcbf --standard=PSR2 ./src ./tests",
"test": "./vendor/bin/phpunit",
"cover-xml": "./vendor/bin/phpunit --coverage-clover=coverage.xml",
"cover": "./vendor/bin/phpunit --coverage-text"
}
}