-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.79 KB
/
Copy pathcomposer.json
File metadata and controls
56 lines (56 loc) · 1.79 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
{
"name": "chubes4/markdown-database-integration",
"description": "WordPress database integration that stores content as markdown files.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=8.1",
"automattic/blocks-engine-php-transformer": "0.1.15",
"halaxa/json-machine": "^1.2"
},
"autoload": {
"classmap": [
"inc/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "package",
"package": {
"name": "automattic/blocks-engine-php-transformer",
"version": "0.1.15",
"type": "library",
"source": {
"type": "git",
"url": "https://github.com/Automattic/blocks-engine.git",
"reference": "php-transformer-v0.1.15"
},
"dist": {
"type": "zip",
"url": "https://github.com/Automattic/blocks-engine/archive/refs/tags/php-transformer-v0.1.15.zip",
"reference": "php-transformer-v0.1.15"
},
"autoload": {
"psr-4": {
"Automattic\\BlocksEngine\\PhpTransformer\\": "php-transformer/src/"
},
"files": [
"php-transformer/php-transformer.php"
]
},
"require": {
"php": ">=8.1",
"league/commonmark": "^2.5",
"league/html-to-markdown": "^5.1"
}
}
}
],
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}