Skip to content

Commit

Permalink
Merge pull request #7 from TysonAndre/analyze-only-on-save
Browse files Browse the repository at this point in the history
 Implement IDE option to analyze only on save; use TCP instead of stdio
  • Loading branch information
TysonAndre committed Feb 4, 2018
2 parents 008c3cc + fe13fc1 commit b00a372
Show file tree
Hide file tree
Showing 6 changed files with 134 additions and 109 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,18 @@ And then point to that phan installation:

## Release History

### 0.0.8 (2018-02-04)

- Bump Phan version in composer.lock from 0.10.3 to 0.10.4-dev
See [Phan's NEWS](https://raw.githubusercontent.com/phan/phan/fbb3be4fd6953fa9a56eb765e5c6d07d538640cb/NEWS) for more details

- Phan supports analyzing `array<int,T>` and `array<string,T>` syntax in PHPDoc and in Phan's internal type system.
(Previously, Phan would internally represent generic arrays as `T[]` (i.e. wouldn't track key types))
- Various improvements and bug fixes.
- Add a new VSCode configuration option `phan.analyzeOnlyOnSave` (off by default). (#6)
If you set this to true, Phan will analyze the file only when you open/save the file (And not while editing or typing).
This is useful on large projects or PHP files.

### 0.0.8 (2018-01-20)

- Bump Phan version in composer.lock from 0.10.3-dev to 0.10.3
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"phan/phan": "0.10.3"
"phan/phan": "dev-master"
}
}
68 changes: 35 additions & 33 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b00a372

Please sign in to comment.