forked from laravel/mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
99 lines (99 loc) · 2.95 KB
/
composer.json
File metadata and controls
99 lines (99 loc) · 2.95 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "huysynf/laravel-mcp-laravel8",
"description": "Laravel MCP backported for Laravel 8+ support. Rapidly build MCP servers for your Laravel applications.",
"keywords": [
"mcp",
"laravel"
],
"homepage": "https://github.com/huysynf/mcp",
"license": "MIT",
"support": {
"issues": "https://github.com/huysynf/mcp/issues",
"source": "https://github.com/huysynf/mcp"
},
"authors": [
{
"name": "Huy Sy",
"email": "huysynf@gmail.com",
"role": "Maintainer (Laravel 8 Backport)"
}
],
"require": {
"php": "^7.4|^8.0|^8.1",
"ext-json": "*",
"ext-mbstring": "*",
"illuminate/container": "^8.0|^9.0|^10.49.0|^11.45.3|^12.41.1",
"illuminate/console": "^8.0|^9.0|^10.49.0|^11.45.3|^12.41.1",
"illuminate/contracts": "^8.0|^9.0|^10.49.0|^11.45.3|^12.41.1",
"illuminate/http": "^8.0|^9.0|^10.49.0|^11.45.3|^12.41.1",
"illuminate/routing": "^8.0|^9.0|^10.49.0|^11.45.3|^12.41.1",
"illuminate/support": "^8.0|^9.0|^10.49.0|^11.45.3|^12.41.1",
"illuminate/validation": "^8.0|^9.0|^10.49.0|^11.45.3|^12.41.1"
},
"require-dev": {
"laravel/pint": "^1.20",
"orchestra/testbench": "^8.36|^9.15|^10.8",
"pestphp/pest": "^2.36.0|^3.8.4|^4.1.0",
"phpstan/phpstan": "^2.1.27",
"rector/rector": "^2.2.4"
},
"autoload": {
"psr-4": {
"Laravel\\Mcp\\": "src/",
"Laravel\\Mcp\\Server\\": "src/Server/"
}
},
"autoload-dev": {
"psr-4": {
"Workbench\\App\\": "workbench/app/",
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Laravel\\Mcp\\Server\\McpServiceProvider"
],
"aliases": {
"Mcp": "Laravel\\Mcp\\Server\\Facades\\Mcp"
}
}
},
"scripts": {
"post-autoload-dump": [
"@clear",
"@prepare"
],
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": "@php vendor/bin/testbench workbench:build --ansi",
"serve": [
"Composer\\Config::disableProcessTimeout",
"@build",
"@php vendor/bin/testbench serve --ansi"
],
"lint": [
"pint",
"rector"
],
"test:lint": [
"pint --test",
"rector --dry-run"
],
"test:unit": "pest --ci --coverage --min=92.5",
"test:types": "phpstan",
"test": [
"@test:lint",
"@test:unit",
"@test:types"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}