-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.82 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.82 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "eonx-com/easy-webhook",
"description": "Sending webhooks has never been so easy (persistence, retry, async)",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2",
"eonx-com/easy-event-dispatcher": "^6.22",
"eonx-com/easy-lock": "^6.22",
"eonx-com/easy-pagination": "^6.22",
"eonx-com/easy-random": "^6.22",
"eonx-com/easy-utils": "^6.22",
"nesbot/carbon": "^3.8.4",
"nette/utils": "^4.0",
"symfony/config": "^7.2",
"symfony/console": "^7.2",
"symfony/dependency-injection": "^7.2",
"symfony/http-client": "^7.2",
"symfony/http-foundation": "^7.2",
"symfony/http-kernel": "^7.2",
"symfony/messenger": "^7.2"
},
"require-dev": {
"doctrine/dbal": "^3.8",
"eonx-com/easy-event-dispatcher": "^6.22",
"eonx-com/easy-test": "^6.22",
"illuminate/database": "^11.15",
"laravel/lumen-framework": "^11.0",
"phpunit/phpunit": "^10.2|^11.4|^12.4"
},
"autoload": {
"psr-4": {
"EonX\\EasyWebhook\\": "src",
"EonX\\EasyWebhook\\Bundle\\": "bundle",
"EonX\\EasyWebhook\\Laravel\\": "laravel"
}
},
"autoload-dev": {
"psr-4": {
"EonX\\EasyWebhook\\Tests\\": "tests",
"EonX\\EasyWebhook\\Tests\\Unit\\": "tests/Unit/src",
"EonX\\EasyWebhook\\Tests\\Unit\\Bundle\\": "tests/Unit/bundle",
"EonX\\EasyWebhook\\Tests\\Unit\\Laravel\\": "tests/Unit/laravel"
}
},
"suggest": {
"doctrine/dbal": "To use Doctrine DBAL for persistence",
"symfony/messenger": "To send webhooks asynchronously using Symfony Messenger"
},
"extra": {
"branch-alias": {
"dev-master": "6.22-dev"
}
}
}