generated from descom-es/laravel-package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
53 lines (53 loc) · 1.44 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": "descom/aws-sns-notification",
"description": "Package to Laravel to received notification from AWS SNS",
"license": "MIT",
"authors": [
{
"name": "Descom",
"email": "soporte@descom.es",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"aws/aws-php-sns-message-validator": "^1.1",
"illuminate/config": "^9.0|^10.0|^11.0",
"illuminate/http": "^9.0|^10.0|^11.0",
"illuminate/routing": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0"
},
"require-dev": {
"descom/dev": "^1.0",
"friendsofphp/php-cs-fixer": "^3.4",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^7.5|^8.0|^9.0",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9.3|^10.0|^10.5"
},
"autoload": {
"psr-4": {
"Descom\\AwsSnsNotification\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Descom\\AwsSnsNotification\\Tests\\": "tests"
}
},
"scripts": {
"test": "./vendor/bin/testbench package:test --parallel --no-coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Descom\\AwsSnsNotification\\AwsSnsNotificationServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}