-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.24 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
{
"name": "objective-php/gateway",
"description": "DAO interoperability layer",
"type": "library",
"keywords": [
"dao",
"database",
"objective php"
],
"config": {
"platform": {
"php": "7.0.18"
}
},
"homepage": "https://github.com/objective-php/gateway",
"license": "GPL-3.0",
"authors": [
{
"name": "Gauthier 'Rusty' Delamarre",
"email": "[email protected]",
"role": "lead"
}
],
"require": {
"php": ">=7.0",
"objective-php/primitives": "^1.3.6",
"objective-php/notification": "^1.1.0",
"zendframework/zend-hydrator": "^2.2",
"zendframework/zend-filter": "^2.7",
"zendframework/zend-servicemanager": "^3.3",
"zendframework/zend-eventmanager": "^3.2",
"objective-php/events-handler": "^1.0"
},
"require-dev": {
"codeception/codeception": "^2.1",
"phpro/grumphp": "^0.11.6",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"squizlabs/php_codesniffer": "^3.0",
"friendsofphp/php-cs-fixer": "^2.3"
},
"autoload": {
"psr-4": {
"ObjectivePHP\\Gateway\\": "src/"
}
}
}