-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
39 lines (39 loc) · 1014 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
39
{
"name": "objective-php/services-factory",
"description": "Services container for Objective PHP",
"type": "library",
"keywords": [
"services",
"dependency injection",
"objective php"
],
"homepage": "https://github.com/objective-php/services-factory",
"license": "GPL-3.0",
"authors": [
{
"name": "Gauthier 'Rusty' Delamarre",
"email": "[email protected]",
"role": "lead"
}
],
"require": {
"php": ">=7.3",
"objective-php/primitives": "^1.3.0",
"objective-php/matcher": "^1.0.0",
"container-interop/container-interop": "^1.1",
"doctrine/annotations": "~1.4.0",
"phpdocumentor/reflection-docblock": "^4.3",
"objective-php/config": "^3.0.0",
"objective-php/docu-mentor": "^1.0"
},
"require-dev": {
"codeception/codeception": "^3.0",
"phpunit/phpunit": "<8.2",
"zendframework/zend-servicemanager": "^2.7.6"
},
"autoload": {
"psr-4": {
"ObjectivePHP\\ServicesFactory\\": "src/"
}
}
}