-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
44 lines (44 loc) · 989 Bytes
/
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
{
"name": "felixfbecker/language-server-protocol",
"description": "PHP classes for the Language Server Protocol",
"license": "ISC",
"keywords": [
"php",
"language",
"server",
"microsoft"
],
"authors": [
{
"name": "Felix Becker",
"email": "felix.b@outlook.com"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpstan/phpstan": "*",
"squizlabs/php_codesniffer": "^3.1",
"vimeo/psalm": "^4.0"
},
"autoload": {
"psr-4": {
"LanguageServerProtocol\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts":
{
"phpstan": "phpstan analyse -c phpstan.neon --ansi --level=7 -vvv src",
"psalm": "psalm",
"phpcs": "phpcs",
"phpcbf": "phpcbf"
}
}