-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
53 lines (53 loc) · 1.35 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
{
"name": "rennokki/laravel-sns-events",
"description": "Laravel SNS Events eases the processing of incoming SNS webhooks using Laravel Events.",
"type": "package",
"license": "Apache-2.0",
"keywords": [
"laravel"
],
"authors": [
{
"name": "Alex Renoki",
"email": "[email protected]",
"homepage": "https://github.com/rennokki",
"role": "Developer"
}
],
"require": {
"illuminate/http": "^9.35|^10.5",
"illuminate/routing": "^9.35|^10.5",
"illuminate/support": "^9.35|^10.5",
"aws/aws-php-sns-message-validator": "^1.6"
},
"autoload": {
"psr-4": {
"Rennokki\\LaravelSnsEvents\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Rennokki\\LaravelSnsEvents\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Rennokki\\LaravelSnsEvents\\LaravelSnsEventsServiceProvider"
]
}
},
"require-dev": {
"mockery/mockery": "^1.5",
"orchestra/testbench": "^7.23|^8.1.1",
"phpunit/phpunit": "^9.5.26"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}