-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 942 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 942 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
33
34
35
36
37
38
39
40
41
{
"name": "idrinth/quickly",
"description": "A fast dependency injection container featuring build time resolution.",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Björn 'Idrinth' Büttner",
"homepage": "https://github.com/idrinth"
}
],
"keywords": [
"PSR-11",
"container",
"dependency-injection",
"autowiring",
"environment-injection",
"build-tool"
],
"bin": ["bin/quickly"],
"require": {
"php": "^8.4",
"psr/container": "^2.0.2"
},
"require-dev": {
"phpunit/phpunit": "^12.3.7"
},
"autoload": {
"psr-4": {
"Idrinth\\Quickly\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Idrinth\\Quickly\\": ["test", "fixtures"]
}
},
"config": {
"optimize-autoloader": true
}
}