forked from PHP-DI/Symfony-Bridge
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 2.26 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "teknoo/bridge-phpdi-symfony",
"type": "library",
"description": "Userfriendly integration of PHP-DI with Symfony, Fork from php-di/symfony-bridge",
"keywords": ["symfony", "phpdi", "di", "bridge"],
"homepage": "https://teknoo.software/libraries/php-di-symfony-bridge",
"license": "MIT",
"authors": [
{
"name": "Richard Déloge",
"email": "[email protected]",
"role": "Software architect, Lead developer"
},
{
"name": "Matthieu Napoli",
"role":"Original author before fork"
}
],
"support": {
"issues": "https://github.com/TeknooSoftware/bridge-phpdi-symfony/issues",
"source": "https://github.com/TeknooSoftware/bridge-phpdi-symfony"
},
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/teknoo_software"
},
{
"type": "github",
"url": "https://github.com/sponsors/TeknooSoftware"
}
],
"config": {
"audit": {
"abandoned": "report"
},
"optimize-autoloader": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"require": {
"php": "^8.2",
"php-di/php-di": "^7.0.6",
"symfony/dependency-injection": "^6.3||^7.0",
"symfony/http-kernel": "^6.3||^7.0",
"symfony/config": "^6.3||^7.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^11.3.5",
"squizlabs/php_codesniffer": "^3.10.2",
"phpstan/phpstan": "^1.12.3",
"symfony/property-access": "^6.3||^7.0",
"symfony/filesystem": "^6.3||^7.0",
"symfony/yaml": "^6.3||^7.0",
"symfony/error-handler": "^6.3||^7.0"
},
"autoload": {
"psr-4": {
"Teknoo\\DI\\SymfonyBridge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Teknoo\\Tests\\DI\\SymfonyBridge\\": "tests/"
}
},
"archive": {
"exclude": ["features", "tests", "vendor", ".idea"]
},
"extra": {
"thanks": {
"name": "php-di/php-di",
"url": "https://github.com/PHP-DI/PHP-DI"
}
}
}