-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.58 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (61 loc) · 1.58 KB
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
{
"name": "spatie/laravel-mailcoach-unlayer",
"description": "An Unlayer editor package for Mailcoach",
"keywords": [
"spatie",
"laravel-mailcoach-unlayer"
],
"homepage": "https://github.com/spatie/laravel-mailcoach-unlayer",
"authors": [
{
"name": "Rias",
"email": "rias@spatie.be",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"ext-json": "*",
"illuminate/support": "^9.0|^10.0",
"spatie/laravel-mailcoach": "^6.0"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^6.0"
},
"repositories": [
{
"type": "composer",
"url": "https://satis.spatie.be"
}
],
"autoload": {
"psr-4": {
"Spatie\\MailcoachUnlayer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\MailcoachUnlayer\\Tests\\": "tests",
"Spatie\\Mailcoach\\Database\\Factories\\": "vendor/spatie/laravel-mailcoach/database/factories"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Spatie\\MailcoachUnlayer\\MailcoachUnlayerServiceProvider"
]
}
}
}