Go to file
Felix Becker 112bf95560 Update README 2016-09-04 11:49:49 +02:00
.vscode Initial Commit 2016-08-25 17:55:00 +02:00
images Add documentSymbol demo 2016-09-02 02:57:42 +02:00
src Fix lint issue 2016-09-02 01:58:04 +02:00
typings Initial Commit 2016-08-25 17:55:00 +02:00
.editorconfig Initial Commit 2016-08-25 17:55:00 +02:00
.gitignore Initial Commit 2016-08-25 17:55:00 +02:00
.travis.yml Initial Commit 2016-08-25 17:55:00 +02:00
.vscodeignore Initial Commit 2016-08-25 17:55:00 +02:00
README.md Update README 2016-09-04 11:49:49 +02:00
composer.json Initial Commit 2016-08-25 17:55:00 +02:00
package.json Update deps 2016-09-02 00:32:53 +02:00
tsconfig.json Initial Commit 2016-08-25 17:55:00 +02:00
tslint.json Initial Commit 2016-08-25 17:55:00 +02:00

README.md

PHP IntelliSense

⚠ Work In Progress

Latest Release Installs Rating Build Status Dependency Status Gitter

Advanced PHP IntelliSense for Visual Studio Code. In opposite to the included PHP IntelliSense and other PHP extensions, this uses an AST to parse the source code instead of relying on naive regular expression parsing.

Features

Find all symbols

Find all symbols demo

Todo

  • Autocompletion
  • Rename
  • Goto definition
  • Format document
  • Hover
  • Follow composer autoloading

Build and Run From Source

Clone whole repository and in root directory execute:

composer install 
npm install
npm run compile
code .

The last command will open the folder in VS Code. Hit F5 to launch an Extension Development Host with the extension.

Contributing

This is just the VS Code extension that spawns the actual language server. The language server itself is implemented purely in PHP in its own repository.