1
0
Fork 0

Update composer.json

pull/6/head
Felix Becker 2016-08-22 22:51:17 +02:00
parent 3b02010097
commit 4682f8790a
1 changed files with 21 additions and 4 deletions

View File

@ -1,7 +1,27 @@
{ {
"name": "language-server", "name": "language-server",
"version": "0.0.1",
"description": "PHP Implementation of the Visual Studio Code Language Server Protocol", "description": "PHP Implementation of the Visual Studio Code Language Server Protocol",
"version": "1.0.0", "authors": [
{
"name": "Felix Becker",
"email": "felix.b@outlook.com"
}
],
"license": "ISC",
"type": "library",
"keywords": [
"php",
"language",
"server",
"microsoft",
"visual",
"studio",
"code",
"intellisense",
"autocompletion",
"refactor"
],
"bin": ["bin/main.php"], "bin": ["bin/main.php"],
"minimum-stability": "dev", "minimum-stability": "dev",
"require": { "require": {
@ -15,8 +35,5 @@
"psr-4": { "psr-4": {
"LanguageServer\\": "src/" "LanguageServer\\": "src/"
} }
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.6"
} }
} }