47 lines
2.1 KiB
Markdown
47 lines
2.1 KiB
Markdown
# PHP Language Server
|
|
|
|
[](https://packagist.org/packages/felixfbecker/language-server)
|
|
[](https://travis-ci.org/felixfbecker/php-language-server)
|
|
[](https://codecov.io/gh/felixfbecker/php-language-server)
|
|
[](https://gemnasium.com/github.com/felixfbecker/php-language-server)
|
|
[](https://php.net/)
|
|
[](https://github.com/felixfbecker/php-language-server/blob/master/LICENSE.txt)
|
|
[](https://gitter.im/felixfbecker/php-language-server?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
|
|
|
A pure PHP implementation of the [Language Server Protocol](https://github.com/Microsoft/language-server-protocol).
|
|
|
|

|
|
|
|
## Used by
|
|
- [vscode-php-intellisense](https://github.com/felixfbecker/vscode-php-intellisense)
|
|
|
|
## Contributing
|
|
|
|
You need at least PHP 7.0 and Composer installed.
|
|
Clone the repository and run
|
|
|
|
composer install
|
|
|
|
to install dependencies.
|
|
|
|
Run the tests with
|
|
|
|
vendor/bin/phpunit --bootstrap vendor/autoload.php tests
|
|
|
|
## Command line arguments
|
|
|
|
###### --tcp=host:port (optional)
|
|
Causes the server to use a tcp connection for communicating with the language client instead of using STDIN/STDOUT.
|
|
The server will try to connect to the specified address.
|
|
|
|
Example:
|
|
|
|
php bin/php-language-server.php --tcp=127.0.0.1:12345
|
|
|
|
###### --memory-limit=integer (optional)
|
|
Sets memory limit for language server. Equivalent to [memory-limit](http://php.net/manual/en/ini.core.php#ini.memory-limit) *php.ini* directive. By default there is no memory limit.
|
|
|
|
Example:
|
|
|
|
php bin/php-language-server.php --memory-limit=256M
|