-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.36 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.36 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
{
"name": "behat/mcp-server",
"description": "MCP Server for Behat BDD testing framework",
"type": "library",
"license": "MIT",
"bin": ["bin/behat-mcp-server"],
"autoload": {
"psr-4": {
"Behat\\McpServer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Behat\\McpServer\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2 <8.6",
"behat/behat": "^3.29",
"php-mcp/server": "^3.3",
"symfony/console": "^6.4 || ^7.0",
"evenement/evenement": "^2.0 || ^3.0"
},
"require-dev": {
"php-cs-fixer/shim": "^3.89",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^9.6 || ^10.0",
"react/async": "^4.3",
"react/child-process": "^0.6.7",
"react/http": "^1.11",
"react/promise-timer": "^1.11",
"rector/rector": "^2.1",
"symfony/filesystem": "^6.4 || ^7.0",
"symfony/process": "^6.4 || ^7.0"
},
"scripts": {
"all-tests": [
"@cs",
"@behat",
"@phpstan",
"@rector"
],
"behat": "behat --no-colors",
"cs": "php-cs-fixer fix --dry-run --verbose --diff",
"cs-fix": "php-cs-fixer fix",
"phpstan": "phpstan analyse",
"rector": "rector --dry-run",
"rector-fix": "rector"
}
}