-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.18 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
{
"name": "morningmedley/block",
"description": "Loads and caches blocks with View capabilities",
"keywords": [
"wordpress",
"morningmedley",
"gutenberg"
],
"license": "MIT",
"authors": [
{
"name": "Mathias Munk",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"MorningMedley\\Block\\": "src/"
}
},
"require": {
"php": "^8.2",
"illuminate/container": "^11.23",
"illuminate/support": "^11.23",
"illuminate/console": "^11.23",
"symfony/cache": "^v7",
"symfony/finder": "^v7"
},
"require-dev": {
"brain/monkey": "^2.6",
"dingo-d/wp-pest": "^1.6.1",
"illuminate/view": "^11.23"
},
"scripts": {
"test": "vendor/bin/pest --group=unit",
"test-coverage": "vendor/bin/pest --group=unit --coverage"
},
"suggest": {
"morningmedley/view": "Allows rendering Blade Views as block templates"
},
"extra": {
"morningmedley": {
"providers": [
"MorningMedley\\Block\\BlockServiceProvider"
]
}
}
}