Skip to content

Commit 030b56d

Browse files
committed
Initial commit
0 parents  commit 030b56d

18 files changed

+3525
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
vendor
2+
build

composer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"require": {
3+
"bunny/bunny": "@dev",
4+
"symfony/http-kernel": "^3.2",
5+
"ramsey/uuid": "^3.5",
6+
"symfony/event-dispatcher": "^3.2",
7+
"symfony/workflow": "^3.2",
8+
"php-http/guzzle6-adapter": "^1.1",
9+
"php-http/curl-client": "^1.7",
10+
"guzzlehttp/psr7": "^1.4",
11+
"php-http/message": "^1.5"
12+
},
13+
"require-dev": {
14+
"phpunit/phpunit": "^6.0"
15+
},
16+
"autoload": {
17+
"psr-4": {
18+
"Webhook\\": "src"
19+
}
20+
}
21+
}

0 commit comments

Comments
 (0)