-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.33 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
47
{
"name": "riskio/recurly-notification-module",
"description": "Recurly webhook listeners into ZF2",
"type": "library",
"keywords": [
"zf2", "recurly", "subscription", "billing", "webhook", "notification"
],
"license": "MIT",
"homepage": "https://github.com/RiskioFr/recurly-notification-module",
"authors": [
{
"name": "Nicolas Eeckeloo",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.riskio.fr"
}
],
"require": {
"php": "^7.0",
"container-interop/container-interop": "^1.0",
"riskio/recurly-client-module": "dev-master",
"vectorface/whip": "~0.3",
"zendframework/zend-authentication": "~2.3",
"zendframework/zend-eventmanager": "~3.0",
"zendframework/zend-http": "~2.3",
"zendframework/zend-log": "~2.3",
"zendframework/zend-mvc": "~2.7",
"zendframework/zend-servicemanager": "~2.7"
},
"require-dev": {
"phpunit/phpunit": "~5.3"
},
"autoload": {
"psr-4": {
"Riskio\\Recurly\\NotificationModule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Riskio\\Recurly\\NotificationModuleTest\\": "tests/"
}
}
}