-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 881 Bytes
/
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
{
"name": "cspray/annotated-container",
"description": "Create Dependency Injection containers configured with PHP8 Attributes.",
"keywords": ["attributes", "auryn", "dependency-injection"],
"license": "MIT",
"authors": [
{
"name": "Charles Sprayberry",
"email": "[email protected]",
"homepage": "https://cspray.io",
"role": "Project Maintainer"
}
],
"bin": ["bin/annotated-container"],
"require": {
"php": "^8.1",
"psr/container": "^2.0",
"rdlowrey/auryn": "^1.4",
"nikic/php-parser": "^4.10",
"symfony/console": "^6.0",
"mikey179/vfsstream": "^1.6"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Cspray\\AnnotatedContainer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cspray\\AnnotatedContainer\\": "test"
}
}
}