-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·47 lines (47 loc) · 1.41 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/idempotency-module",
"description": "Zend Framework module ensuring at most once requests for mutating endpoints.",
"type": "library",
"license": "MIT",
"keywords": [
"idempotency",
"http",
"request"
],
"homepage": "https://github.com/RiskioFr/idempotency-module",
"authors": [
{
"name": "Nicolas Eeckeloo",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"psr/cache": "^1.0",
"symfony/cache": "^3.0",
"zendframework/zend-diactoros": "^1.1",
"zendframework/zend-eventmanager": "^2.6.3 || ^3.0",
"zendframework/zend-http": "^2.6",
"zendframework/zend-mvc": "^3.0",
"zendframework/zend-psr7bridge": "^1.0",
"zendframework/zend-stdlib": "^2.7.3 || ^3.0",
"zendframework/zend-validator": "^2.0",
"http-interop/http-middleware": "^0.4.1"
},
"require-dev": {
"fzaninotto/faker": "^1.7.1",
"phpspec/phpspec": "^4.0.3",
"phpspec/prophecy": "^1.7.2"
},
"autoload": {
"psr-4": {
"Riskio\\IdempotencyModule\\": "src/"
}
},
"extra": {
"zf": {
"config-provider": "Riskio\\IdempotencyModule\\ConfigProvider",
"module": "Riskio\\IdempotencyModule\\Module"
}
}
}