-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.7 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 1.7 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
62
63
64
65
66
67
68
69
70
{
"name": "digitalnodecom/substrate",
"description": "MCP server for AI-assisted WordPress development with Bedrock, Acorn, and Sage.",
"keywords": [
"wordpress",
"bedrock",
"acorn",
"sage",
"roots",
"ai",
"mcp"
],
"homepage": "https://github.com/digitalnodecom/substrate",
"license": "MIT",
"support": {
"issues": "https://github.com/digitalnodecom/substrate/issues",
"source": "https://github.com/digitalnodecom/substrate"
},
"require": {
"php": "^8.2",
"roots/acorn": "^5.0",
"laravel/mcp": "^0.5.1",
"guzzlehttp/guzzle": "^7.9"
},
"require-dev": {
"laravel/pint": "^1.20.0",
"pestphp/pest": "^2.36.0|^3.8.4",
"phpstan/phpstan": "^2.1"
},
"autoload": {
"psr-4": {
"Roots\\Substrate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"acorn": {
"providers": [
"Roots\\Substrate\\SubstrateServiceProvider"
]
},
"laravel": {
"providers": [
"Roots\\Substrate\\SubstrateServiceProvider"
]
}
},
"scripts": {
"lint": [
"pint",
"phpstan --memory-limit=-1"
],
"test": "pest",
"test:lint": "pint --test",
"test:types": "phpstan"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"roots/wordpress-core-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}