-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.42 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
{
"name": "php-lsp/rpc-codec-contracts",
"description": "RPC Codec (Encoder/Decoder) Contracts",
"type": "library",
"license": "MIT",
"keywords": ["rpc", "protocol", "codec", "encoder", "decoder", "interoperability", "php", "lsp"],
"support": {
"source": "https://github.com/php-lsp/rpc-codec-contracts",
"issues": "https://github.com/php-lsp/php-lsp/issues"
},
"authors": [
{
"name": "Kirill Nesmeyanov",
"email": "nesk@xakep.ru",
"homepage": "https://nesk.me"
}
],
"require": {
"php": "^8.1",
"php-lsp/rpc-message-contracts": "^1.0"
},
"autoload": {
"psr-4": {
"Lsp\\Contracts\\Rpc\\Codec\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "^10.5|^11.0"
},
"autoload-dev": {
"psr-4": {
"Lsp\\Contracts\\Rpc\\Codec\\Tests\\": "tests"
}
},
"scripts": {
"test": "@test:unit",
"test:unit": "phpunit --testdox"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev",
"dev-main": "1.x-dev"
}
},
"config": {
"sort-packages": true,
"platform-check": true,
"bin-compat": "full",
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}