-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·59 lines (59 loc) · 1.31 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
{
"name": "beebmx/kirby-courier",
"description": "Kirby Courier offers a convenient and painless solution for creating emails tailored for your Kirby website.",
"license": "MIT",
"type": "kirby-plugin",
"version": "1.0.3",
"keywords": [
"kirby",
"kirby-4",
"mail",
"email",
"courier"
],
"authors": [
{
"name": "Fernando Gutierrez",
"homepage": "https://beeb.mx"
}
],
"require": {
"php": "^8.2",
"getkirby/composer-installer": "^1.0",
"tijsverkoyen/css-to-inline-styles": "^2.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"pestphp/pest": "^2.0",
"getkirby/cms": "^4.3",
"spatie/ray": "^1.40",
"getkirby/cli": "^1.5"
},
"config": {
"allow-plugins": {
"getkirby/composer-installer": true,
"pestphp/pest-plugin": true
}
},
"autoload": {
"files": [
"helpers.php"
],
"psr-4": {
"Beebmx\\KirbyCourier\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"kirby-plugin-path": "tests/Fixtures/site/plugins"
},
"scripts": {
"test": "vendor/bin/pest"
},
"minimum-stability": "dev",
"prefer-stable": true
}