-
-
Notifications
You must be signed in to change notification settings - Fork 235
/
composer.json
76 lines (76 loc) · 2.08 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "spatie/laravel-newsletter",
"description": "Manage Mailcoach and MailChimp newsletters in Laravel",
"keywords": [
"laravel",
"newsletter",
"mailcoach",
"mailchimp"
],
"homepage": "https://github.com/spatie/laravel-newsletter",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
"email": "[email protected]",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"spatie/laravel-package-tools": "^1.13",
"illuminate/log": "^9|^10|^11"
},
"suggest": {
"spatie/mailcoach-sdk-php": "For working with Mailcoach",
"drewm/mailchimp-api": "For working with MailChimp"
},
"require-dev": {
"drewm/mailchimp-api": "^2.5",
"guzzlehttp/guzzle": "^7.5|^7.2",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^7.11|^8.0",
"pestphp/pest": "^1.20",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"spatie/mailcoach-sdk-php": "^1.0",
"spatie/ray": "^1.28"
},
"autoload": {
"psr-4": {
"Spatie\\Newsletter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\Newsletter\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"analyse": "vendor/bin/phpstan",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"extra": {
"laravel": {
"providers": [
"Spatie\\Newsletter\\NewsletterServiceProvider"
],
"aliases": {
"Newsletter": "Spatie\\Newsletter\\Facades\\Newsletter"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}