-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 2 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "kariricode/configurator",
"description": "A flexible and efficient configuration management component for the KaririCode Framework, providing robust configuration handling for PHP applications.",
"keywords": [
"Configuration",
"Config",
"php",
"KaririCode",
"framework",
"Configurator",
"Config Loader",
"Config Parser",
"Config Storage",
"Environment Configuration",
"Multi-environment Config",
"Config Caching",
"Config Merging",
"Application Settings",
"System Configuration"
],
"homepage": "https://kariricode.org/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Walmir Silva",
"email": "walmir.silva@kariricode.org"
}
],
"autoload": {
"psr-4": {
"KaririCode\\Configurator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KaririCode\\Configurator\\Tests\\": "tests"
}
},
"require": {
"php": "^8.3",
"kariricode/contract": "^2.6",
"kariricode/data-structure": "^1.0",
"symfony/yaml": "^6.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.58",
"nunomaduro/phpinsights": "^2.11",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.10",
"mockery/mockery": "^1.6",
"enlightn/security-checker": "^2.0"
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests",
"analyse": "phpstan analyse src tests --level=max"
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
},
"kariricode/configurator": {
"config-file": "config/configurator.php"
}
},
"support": {
"issues": "https://github.com/KaririCode-Framework/kariricode-configurator/issues",
"source": "https://github.com/KaririCode-Framework/kariricode-configurator"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}