-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
62 lines (62 loc) · 1.76 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "binary-cats/laravel-bigbluebutton-webhooks",
"description": "Handle BigBlueButton webhooks in a Laravel application",
"keywords": [
"binary-cats",
"laravel",
"bbb",
"bigbluebutton",
"webhooks"
],
"homepage": "https://github.com/binary-cats/laravel-bigbluebutton-webhooks",
"license": "MIT",
"authors": [
{
"name": "Cyrill Kalita",
"email": "cyrill.kalita@gmail.com",
"homepage": "https://github.com/binary-cats",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "^8.0|^9.0",
"spatie/laravel-webhook-client": "^3.0"
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^9.4"
},
"autoload": {
"psr-4": {
"BinaryCats\\BigBlueButtonWebhooks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"suggest": {
"binary-cats/laravel-lob-webhooks": "Handle lob.com webhooks in your Laravel application",
"binary-cats/laravel-mailgun-webhooks": "Handle mailgun.com webhooks in your Laravel application"
},
"scripts": {
"coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html coverage -d pcov.enabled",
"test": "./vendor/bin/phpunit --color=always -vvv"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "9.x-dev"
},
"laravel": {
"providers": [
"BinaryCats\\BigBlueButtonWebhooks\\BigBlueButtonWebhooksServiceProvider"
]
}
}
}