-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
58 lines (58 loc) · 1.43 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
{
"name": "vansteen/laravel-sendinblue",
"type": "library",
"description": "A Laravel 5/6/7/8 service provider, facade and config file for the SendinBlue's API v3 official PHP library.",
"keywords": [
"laravel",
"sendinblue"
],
"homepage": "https://github.com/vansteen/laravel-sendinblue",
"license": "MIT",
"authors": [
{
"name": "Thomas Van Steenwinckel",
"email": "[email protected]",
"homepage": "https://github.com/vansteen",
"role": "Developer"
}
],
"require": {
"illuminate/support": "~5|^6.0|^7.0|^8.0|^9.0",
"sendinblue/api-v3-sdk": "^6.1|^7.0|^8.0"
},
"require-dev": {
"phpunit/phpunit": "~5.7|^8.0|^9.0",
"orchestra/testbench": "~3.0|^4.0|^5.0|^6.0|^7.0",
"php-coveralls/php-coveralls": "^2.2",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"Vansteen\\Sendinblue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vansteen\\Sendinblue\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Vansteen\\Sendinblue\\SendinblueServiceProvider"
],
"aliases": {
"Sendinblue": "Vansteen\\Sendinblue\\Facades\\Sendinblue"
}
}
},
"scripts": {
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes --ansi",
"phpunit": "vendor/bin/phpunit --coverage-text",
"test": [
"@phpcs",
"@phpunit"
]
},
"minimum-stability": "stable"
}