-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
67 lines (67 loc) · 1.96 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "lcobucci/di-builder",
"description": "Dependency Injection Builder for PHP applications",
"license": [
"BSD-3-Clause"
],
"type": "library",
"keywords": [
"dependency-injection"
],
"authors": [
{
"name": "Luís Cobucci",
"email": "[email protected]"
}
],
"homepage": "https://github.com/lcobucci/di-builder",
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"symfony/config": "^7.1",
"symfony/dependency-injection": "^7.1",
"symfony/expression-language": "^7.1",
"symfony/filesystem": "^7.1"
},
"require-dev": {
"infection/infection": "^0.29",
"lcobucci/coding-standard": "^11.1",
"mikey179/vfsstream": "^1.6.12",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "^11.4",
"squizlabs/php_codesniffer": "^3.10",
"symfony/yaml": "^7.1"
},
"replace": {
"symfony/polyfill-php71": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*"
},
"autoload": {
"psr-4": {
"Lcobucci\\DependencyInjection\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Lcobucci\\DependencyInjection\\": "test"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"ocramius/package-versions": true,
"phpstan/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
}
}