-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.11 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.11 KB
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
{
"name": "phpnomad/php-di-integration",
"description": "PHP-DI integration for PHPNomad — compilable container, config repo, and registry backed by PHP-DI.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alex Standiford",
"email": "alex@standiford.us"
}
],
"require": {
"php": ">=8.2",
"phpnomad/di": "^2.0",
"phpnomad/registry": "^1.0",
"phpnomad/config": "^1.0",
"phpnomad/loader": "^1.0 || ^2.0",
"phpnomad/core": "^2.0 || ^3.0",
"php-di/php-di": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"mockery/mockery": "^1.5",
"phpnomad/tests": "^0.3.0"
},
"autoload": {
"psr-4": {
"PHPNomad\\Integrations\\PhpDi\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"PHPNomad\\Integrations\\PhpDi\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}