-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 1.99 KB
/
Copy pathcomposer.json
File metadata and controls
74 lines (74 loc) · 1.99 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
{
"name": "nextcloud/astrolabe",
"description": "This app provides a management UI for the Nextcloud MCP Server",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Chris Coutinho",
"email": "chris@coutinho.io",
"homepage": "https://github.com/cbcoutinho"
}
],
"autoload": {
"psr-4": {
"OCA\\Astrolabe\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"OCP\\": "vendor/nextcloud/ocp/OCP/",
"OCA\\Astrolabe\\Tests\\Unit\\": "tests/unit/",
"OCA\\Astrolabe\\Tests\\Contract\\": "tests/contract/"
}
},
"scripts": {
"post-install-cmd": [
"@composer bin all install --ansi"
],
"post-update-cmd": [
"@composer bin all install --ansi"
],
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm --threads=1 --no-cache",
"test:unit": "./vendor/bin/phpunit -c tests/unit/phpunit.xml --colors=always",
"test:contract": "./vendor/bin/phpunit -c tests/contract/phpunit.xml --colors=always",
"openapi": "generate-spec",
"rector": "rector && composer cs:fix"
},
"require": {
"php": "^8.2",
"bamarni/composer-bin-plugin": "^1.8",
"cweagans/composer-patches": "^2.0",
"mcp/sdk": "^0.7.0",
"symfony/uid": "^6.4"
},
"require-dev": {
"doctrine/dbal": "^4.0",
"guzzlehttp/guzzle": "^7.0",
"nextcloud/ocp": "dev-stable32",
"pact-foundation/pact-php": "^10.0",
"phpunit/phpunit": "^10.0",
"roave/security-advisories": "dev-latest"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"pact-foundation/composer-downloads-plugin": true,
"cweagans/composer-patches": true
},
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.2"
}
},
"extra": {
"patches": {
"mcp/sdk": {
"Client: parse CRLF/CR-delimited SSE events (upstream bug, unreleased)": "patches/mcp-sdk-client-sse-crlf-framing.patch"
}
}
}
}