Go to file
Felix Becker ddf176c829 Add URI converter (#23) 2016-10-21 18:40:06 +02:00
.vscode Initial Commit 2016-08-25 17:55:00 +02:00
images Add workspace symbol search demo gif 2016-09-30 12:32:59 +02:00
src Add URI converter (#23) 2016-10-21 18:40:06 +02:00
.editorconfig Initial Commit 2016-08-25 17:55:00 +02:00
.gitignore Check PHP version and display error message 2016-09-09 20:11:24 +02:00
.travis.yml Update .travis.yml 2016-10-12 09:54:25 +02:00
.vscodeignore Initial Commit 2016-08-25 17:55:00 +02:00
README.md Document executablePath setting 2016-10-12 10:27:51 +02:00
composer.json Upgrade language-server dep (#16) 2016-09-30 12:07:46 +02:00
package.json Update vscode dep 2016-10-12 10:45:01 +02:00
tsconfig.json Update vscode dep 2016-10-12 10:45:01 +02:00
tslint.json Initial Commit 2016-08-25 17:55:00 +02:00
typings.json Update vscode dep 2016-10-12 10:45:01 +02:00

README.md

PHP IntelliSense

⚠ Work In Progress

Latest Release Installs Rating Build Status Dependency Status Minimum PHP Version 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.

Note: 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, all features need to be implemented there and all issues should be reported there.

You need at least PHP 7 installed for the extension to work. You can either add it to your PATH or set the php.executablePath setting.

Features

Find all symbols

Find all symbols demo

Column-accurate error reporting

Error reporting demo

Format code

Format code demo

Workspace symbol search demo

Todo

  • Autocompletion
  • Rename
  • Goto definition
  • Hover
  • Signature help
  • Follow composer autoloading

Contributing

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. For working on the language server, the easiest way is to replace the language server installation from composer in vendor/felixfbecker/language-server with a symlink to your local clone.

For guidance on how to work on the language server, please see the language server repository.