-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 913 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 913 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
30
31
32
33
34
{
"name": "geeklab/conf",
"description": "Immutable configuration system for PHP >= 8.1",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Ellis Geeklab",
"email": "email@example.com"
}
],
"require": {
"php": ">=8.1",
"symfony/yaml": "^6.1"
},
"autoload": {
"psr-4": {
"GeekLab\\Conf\\": "src",
"Tests\\Unit\\": "tests/Unit"
}
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.9",
"phpmd/phpmd": "^2.13"
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse -c phpstan.neon",
"phpcs": "phpcs src/ --standard=PSR12 -n",
"phpmd": "phpmd src/ text cleancode,codesize,controversial,design,naming,unusedcode"
}
}