-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 892 Bytes
/
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
{
"name": "zalas/injector",
"description": "Injects services from a PSR-11 service container into objects",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jakub Zalas",
"email": "jakub@zalas.pl"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0 || ^11.0",
"phpspec/prophecy": "^1.9",
"phpspec/prophecy-phpunit": "^2.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Zalas\\Injector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Zalas\\Injector\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
}
}
}