-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 891 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 891 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
{
"name": "nabeghe/configurator",
"description": "A PHP configuration management library that supports file-based storage and loads each section lazily.",
"keywords": ["helper", "library", "config", "configurator", "configuration", "settings"],
"type": "library",
"homepage": "https://github.com/nabeghe/configurator-php",
"license": "MIT",
"authors": [
{
"name": "Hadi Akbarzadeh",
"email": "elsiomcoder@gmail.com",
"homepage": "https://elatel.ir",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Nabeghe\\Configurator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nabeghe\\Configurator\\Test\\": "tests/"
}
},
"require": {
"php": ">=8.3"
},
"require-dev": {
"phpunit/phpunit": "12"
}
}