-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
43 lines (43 loc) · 1.25 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
{
"name": "zalas/phpunit-injector",
"description": "Injects services from a PSR-11 dependency injection container to PHPUnit test cases",
"type": "library",
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"phpunit/phpunit": "^9.0 || ^10.0 || ^11.0",
"psr/container": "^1.0 || ^2.0",
"zalas/injector": "^2.0"
},
"require-dev": {
"symfony/config": "^4.4.12 || ^5.3 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.4.12 || ^5.3 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4.12 || ^5.3 || ^6.0 || ^7.0",
"zalas/phpunit-globals": "^2.0 || ^3.0",
"symfony/framework-bundle": "^4.4.12 || ^5.3 || ^6.0",
"zalas/phpunit-doubles": "^1.9.2",
"phpspec/prophecy": "^1.9",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"Zalas\\Injector\\PHPUnit\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Zalas\\Injector\\PHPUnit\\Tests\\": "tests"
}
},
"license": "MIT",
"authors": [
{
"name": "Jakub Zalas",
"email": "[email protected]"
}
],
"extra": {
"branch-alias": {
"dev-2.5": "2.x-dev"
}
}
}