-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 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
49
50
{
"name": "morningtrain/wp-blocks",
"description": "A package for loading WordPress blocks with support for Blade templates",
"keywords": [
"wordpress",
"morningtrain",
"gutenberg",
"blocks"
],
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Morningtrain",
"email": "mh@morningtrain.dk"
}
],
"autoload": {
"psr-4": {
"Morningtrain\\WP\\Blocks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Morningtrain\\WP\\Hooks\\Tests\\Unit\\": "tests/Unit"
}
},
"require": {
"php": "^8.0",
"morningtrain/php-loader": "^0.3.2"
},
"require-dev": {
"pestphp/pest": "^1.21",
"brain/monkey": "~2.0.0"
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage"
},
"suggest": {
"morningtrain/wp-view": "Allows rendering Blade Views as block templates"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"prefer-stable": true
}