-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (56 loc) · 1.13 KB
/
composer.json
File metadata and controls
63 lines (56 loc) · 1.13 KB
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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "phpgt/config",
"description": "Manage configuration with ini files and environment variables.",
"type": "library",
"require": {
"php": ">=8.3",
"phpgt/typesafegetter": "^v1.2",
"magicalex/write-ini-file": "v1.2.4"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.4",
"squizlabs/php_codesniffer": "^4.0",
"phpmd/phpmd": "^2.15"
},
"license": "MIT",
"bin": [
"bin/config-generate"
],
"authors": [
{
"name": "Greg Bowler",
"email": "greg.bowler@g105b.com"
}
],
"autoload": {
"psr-4": {
"GT\\Config\\": "./src",
"Gt\\Config\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"GT\\Config\\Test\\": "./test/phpunit",
"Gt\\Config\\Test\\": "./test/phpunit"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --configuration phpunit.xml",
"phpstan": "vendor/bin/phpstan analyse --level 6 src",
"phpcs": "vendor/bin/phpcs src --standard=phpcs.xml",
"phpmd": "vendor/bin/phpmd src/ text phpmd.xml",
"test": [
"@phpunit",
"@phpstan",
"@phpcs",
"@phpmd"
]
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/PhpGt"
}
]
}