-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
92 lines (92 loc) · 2.88 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "spatie/laravel-mailcoach",
"description": "Send email campaigns using Laravel",
"keywords": [
"spatie",
"laravel-mailcoach",
"mail",
"mass mailing"
],
"homepage": "https://mailcoach.app",
"authors": [
{
"name": "Freek Van der Herten",
"email": "[email protected]",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4",
"ext-dom": "*",
"ext-libxml": "*",
"cakephp/chronos": "^1.2.8|^2.0",
"guzzlehttp/guzzle": "^6.4|^7.0",
"illuminate/database": "^7.12|^8.0",
"illuminate/events": "^7.12|^8.0",
"illuminate/mail": "^7.12|^8.0",
"illuminate/queue": "^7.12|^8.0",
"illuminate/redis": "^7.12|^8.0",
"illuminate/support": "^7.12|^8.0",
"laravel/horizon": "^4.0|^5.0",
"league/html-to-markdown": "^4.10",
"nesbot/carbon": "^2.26",
"ocramius/package-versions": "^1.2",
"spatie/laravel-feed": "^2.6",
"spatie/laravel-flash": "^1.7",
"spatie/laravel-json-api-paginate": "^1.7",
"spatie/laravel-medialibrary": "^8.7",
"spatie/laravel-model-cleanup": "^3.0",
"spatie/laravel-query-builder": "^2.8.3",
"spatie/laravel-rate-limited-job-middleware": "^1.3",
"spatie/laravel-schemaless-attributes": "^1.8",
"spatie/laravel-validation-rules": "^2.6",
"spatie/laravel-view-models": "^1.3",
"spatie/laravel-webhook-client": "^2.7",
"spatie/query-string": "^1.0",
"spatie/simple-excel": "^1.7",
"spatie/temporary-directory": "^1.2",
"symfony/css-selector": "^5.1",
"symfony/dom-crawler": "^5.1",
"tijsverkoyen/css-to-inline-styles": "^2.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"fzaninotto/faker": "^1.9",
"laravel/legacy-factories": "^1.0.4",
"orchestra/testbench": "^5.0|^6.0",
"phpunit/phpunit": "^9.3",
"predis/predis": "^1.1",
"spatie/phpunit-snapshot-assertions": "^4.2",
"spatie/test-time": "^1.2",
"symfony/var-dumper": "^5.1"
},
"autoload": {
"psr-4": {
"Spatie\\Mailcoach\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\Mailcoach\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"split": "./split.sh",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Spatie\\Mailcoach\\MailcoachServiceProvider"
]
}
}
}