-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.65 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.65 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
{
"name": "ctx/module-research",
"description": "Research module for CTX framework",
"keywords": [],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pavel Buchnev",
"email": "butschster@gmail.com"
}
],
"require": {
"php": ">=8.3",
"ctx/mcp-server": "^1.0",
"cocur/slugify": "^4.6",
"spiral/boot": "^3.15",
"spiral/config": "^3.15",
"spiral/console": "^3.15",
"spiral/files": "^3.15",
"symfony/yaml": "^7.2 || ^8.0"
},
"require-dev": {
"spiral/code-style": "^2.2",
"phpunit/phpunit": "^10.5",
"rector/rector": "^2.1",
"vimeo/psalm": "^6.0"
},
"autoload": {
"psr-4": {
"Butschster\\ContextGenerator\\Research\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"cs-check": "vendor/bin/php-cs-fixer fix --dry-run",
"cs-fix": "vendor/bin/php-cs-fixer fix",
"psalm": "vendor/bin/psalm --config=psalm.xml ./src",
"psalm:ci": "vendor/bin/psalm --config=psalm.xml ./src --output-format=github --shepherd --show-info=false --stats --threads=4 --no-cache",
"refactor": "rector process --config=rector.php",
"refactor:ci": "rector process --config=rector.php --dry-run --ansi",
"test": "vendor/bin/phpunit",
"test:cc": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-clover=.build/phpunit/logs/clover.xml --color=always"
],
"cs:fix": [
"@cs-fix",
"@refactor"
],
"lint": [
"@cs-check",
"@refactor:ci",
"@psalm",
"@test"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}