Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@ Changelog

Features:

- [completion] Basic Doctrine annotation completion support - @elythyr
- [language-server] Import class/function code action and diagnostics
- [language-server] Transform code actions and diagnostics (complete
constructor, implement contracts, fix class name and add missing
properties)
- [completion] Show warning character if method or class is deprecated
- [indexer] PhpStorm stubs are now indexed
- [indexer] CLI command for index search (mainly for debugging)
- [completion] References are sorted alphabetically - @elythyr

Improvements:

Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"phpactor/completion": "^0.4.3",
"phpactor/completion-extension": "~0.2.3",
"phpactor/completion-rpc-extension": "^0.2.0",
"phpactor/completion-worse-extension": "^0.2.1",
"phpactor/completion-worse-extension": "^0.2.2",
"phpactor/composer-autoloader-extension": "^0.2.2",
"phpactor/config-loader": "^0.1",
"phpactor/console-extension": "^0.1.5",
Expand Down Expand Up @@ -47,7 +47,8 @@
"symfony/console": "^4.0",
"symfony/filesystem": "^3.3|^4.2|^5.0",
"symfony/yaml": "^3.3",
"webmozart/glob": "^4.1"
"webmozart/glob": "^4.1",
"thecodingmachine/safe": "~1.1.0"
},
"require-dev": {
"phpactor/debug-extension": "^0.1.0@dev",
Expand Down
Loading