-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.22 KB
/
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
37
38
39
40
41
42
43
44
{
"name": "frzb/dependency-injection",
"type": "library",
"description": "Allows you to standardize and centralize the way objects are constructed in your application by php attributes",
"keywords": [
"library",
"symfony",
"dependency",
"injection",
"dependency-injection",
"frzb"
],
"homepage": "https://github.com/fractalzombie/frzb-dependency-injection",
"license": "MIT",
"authors": [
{
"name": "Mykhailo Shtanko",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"fp4php/functional": "^6.0",
"symfony/dependency-injection": "^5.4|^6|^7",
"symfony/http-kernel": "^5.4|^6|^7"
},
"require-dev": {
"symfony/config": "^5.4|^6|^7",
"phpunit/php-code-coverage": "^10.1",
"phpunit/phpunit": "^10.5",
"symfony/phpunit-bridge": "^5.4|^6|^7",
"friendsofphp/php-cs-fixer": "^v3.41"
},
"autoload": {
"psr-4": {
"FRZB\\Component\\DependencyInjection\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}