This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (69 loc) · 2.47 KB
/
composer.json
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
{
"name": "phplrt/lsp",
"type": "library",
"repositories": [
{"type": "path", "url": "libs/contracts/rpc-message"},
{"type": "path", "url": "libs/contracts/rpc-message-factory"},
{"type": "path", "url": "libs/contracts/rpc-hydrator"},
{"type": "path", "url": "libs/contracts/rpc-protocol"},
{"type": "path", "url": "libs/language-server-protocol"},
{"type": "path", "url": "libs/rpc-dispatcher"},
{"type": "path", "url": "libs/rpc-hydrator"},
{"type": "path", "url": "libs/rpc-message"},
{"type": "path", "url": "libs/rpc-message-factory"},
{"type": "path", "url": "libs/rpc-protocol-jsonrpc"}
],
"require": {
"php": "^8.1",
"evenement/evenement": "^1.0|^2.0|^3.0",
"psr/log": "^1.0|^2.0|^3.0",
"phplrt/language-server-protocol": "^1.0",
"phplrt/rpc-dispatcher": "^1.0",
"phplrt/rpc-hydrator-contracts": "^1.0",
"phplrt/rpc-hydrator": "^1.0",
"phplrt/rpc-message-contracts": "^1.0",
"phplrt/rpc-message": "^1.0",
"phplrt/rpc-message-factory-contracts": "^1.0",
"phplrt/rpc-message-factory": "^1.0",
"phplrt/rpc-protocol-contracts": "^1.0",
"phplrt/rpc-protocol-jsonrpc": "^1.0",
"react/socket": "^1.14",
"symfony/yaml": "^5.4|^6.0"
},
"autoload": {
"psr-4": {
"App\\": "app",
"Phplrt\\LanguageServer\\": "src"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.34",
"monolog/monolog": "^3.3",
"phpunit/phpunit": "^10.4",
"symfony/var-dumper": "^5.4|^6.0",
"vimeo/psalm": "^5.15"
},
"scripts": {
"linter": "@linter:check",
"linter:check": "psalm --no-cache",
"linter:fix": "psalm --no-cache --alter",
"phpcs": "@phpcs:check",
"phpcs:check": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --dry-run",
"phpcs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes",
"test": "@test:unit",
"test:unit": "phpunit --testdox",
"run:server": "@php bin/run",
"run:vscode": "code ./extension/vscode --extensionDevelopmentPath=extension/vscode"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-main": "1.0.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}