forked from GermaniaKG/ConfigReader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·68 lines (66 loc) · 1.43 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "tomkyle/configreader",
"description": "Successor of germania-kg/configreader: Merge default and custom configuration files with Symfony YAML. Supports PSR-6 CacheItemPools.",
"replace": {
"germania-kg/configreader":"3.2"
},
"keywords": [
"merge",
"config",
"config-files",
"yaml",
"symfony-yaml",
"yaml-configuration",
"cache",
"psr-6"
],
"homepage": "https://github.com/tomkyle/ConfigReader",
"license": "MIT",
"authors": [
{
"name": "Carsten Witt",
"email": "[email protected]",
"homepage": "https://tomkyle.net",
"role": "Developer"
},{
"name": "Carsten Witt, Germania KG",
"email": "[email protected]",
"homepage": "https://germania-kg.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"autoload": {
"psr-4": {
"Germania\\ConfigReader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/src/"
}
},
"require": {
"php": "^8.1",
"psr/log": "^2.0|^3.0",
"psr/cache": "^2.0|^3.0",
"symfony/yaml": "^6.1|^7.0",
"germania-kg/cachecallable": "^2.0"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.0",
"phpunit/phpunit": "^10.0",
"phpspec/prophecy-phpunit": "^2.0",
"monolog/monolog": "^2.1|^3.0",
"phpstan/phpstan": "^1.9"
},
"scripts": {
"phpunit": "phpunit --coverage-text",
"phpunit:clover": "phpunit --coverage-clover tests/build/clover.xml",
"test": [
"@phpunit"
]
}
}