-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
62 lines (62 loc) · 1.77 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": "dniccum/nova-webhooks",
"description": "A tool for Laravel's Nova administrator panel that enables users to create webhooks that can be customized to fire on specified Eloquent model events (created, updated, etc). This allows applications to communicate with other applications and integrations (Zapier, If This Then That, etc).",
"keywords": [
"laravel",
"nova",
"webhooks",
"server"
],
"authors": [
{
"name": "Doug Niccum",
"email": "[email protected]",
"homepage": "https://dniccumdesign.com",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": "^8.1",
"bensampo/laravel-enum": "^6.0",
"coroowicaksono/chart-js-integration": "^0.3.5",
"laravel/nova": "^5.0",
"owenmelbz/nova-radio-field": "^1.0",
"spatie/laravel-webhook-server": "^3.0",
"symfony/class-loader": "^3.4"
},
"require-dev": {
"orchestra/testbench": "^9.8.0",
"phpunit/phpunit": "^10.5.35"
},
"autoload": {
"psr-4": {
"Dniccum\\NovaWebhooks\\": "src/",
"Spatie\\WebhookServer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dniccum\\NovaWebhooks\\Tests\\": "tests",
"Dniccum\\NovaWebhooks\\Database\\": "database/"
}
},
"extra": {
"laravel": {
"providers": [
"Dniccum\\NovaWebhooks\\ToolServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
]
}