-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.14 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.14 KB
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
{
"name": "swop/github-webhook-stackphp",
"license": "MIT",
"type": "library",
"description": "Stack middleware which will verify if the incoming GitHub web hook request is correctly signed.",
"keywords": [
"stack",
"github",
"stack middleware",
"webhook",
"middleware",
"security"
],
"authors": [
{
"name": "Sylvain Mauduit",
"email": "sylvain@mauduit.fr",
"homepage": "https://github.com/Swop"
}
],
"require": {
"php": ">=5.4",
"symfony/http-foundation": "^2.3|^3.0",
"symfony/http-kernel": "^2.3|^3.0",
"stack/builder": "^1.0",
"symfony/psr-http-message-bridge": "^1.0",
"zendframework/zend-diactoros": "^1.3",
"http-interop/http-middleware": "^0.2.1",
"swop/github-webhook-middleware": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.5.0"
},
"autoload": {
"psr-4": {
"Swop\\GitHubWebHookStackPHP\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}