-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 879 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 879 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": "respect/config",
"type": "library",
"homepage": "https://github.com/Respect/Config",
"description": "A powerful, small, deadly simple configurator and dependency injection container made to be easy.",
"keywords": ["respect", "config", "dic", "dependency injection"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Respect/Config Contributors",
"homepage": "https://github.com/Respect/Config/graphs/contributors"
}
],
"autoload": {
"psr-4": {
"Respect\\": "library/Respect"
}
},
"require": {
"php": ">=8.5.0",
"psr/container": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"mikey179/vfsstream": "^1.6"
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}