Skip to content

Commit

Permalink
release: 1.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
kokororin committed Jun 29, 2023
1 parent 2ce1987 commit 408b5fc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.1.10

- Add option `wp`

### 1.1.9

- Add command `upgradeFmt`
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ A: We now use `fmt.stub.php` from driade's [phpfmt8](https://github.com/driade/p
| phpfmt.psr1 | `boolean` | activate PSR1 style | false |
| phpfmt.psr1_naming | `boolean` | activate PSR1 style - Section 3 and 4.3 - Class and method names case. | false |
| phpfmt.psr2 | `boolean` | activate PSR2 style | true |
| phpfmt.wp | `boolean` | activate WP style | false |
| phpfmt.indent_with_space | `integer \| boolean` | use spaces instead of tabs for indentation. Default 4 | 4 |
| phpfmt.enable_auto_align | `boolean` | enable auto align of ST_EQUAL and T_DOUBLE_ARROW | false |
| phpfmt.visibility_order | `boolean` | fixes visibiliy order for method in classes - PSR-2 4.2 | false |
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-phpfmt",
"displayName": "phpfmt - PHP formatter",
"version": "1.1.9",
"version": "1.1.10",
"description": "Integrates phpfmt into VS Code",
"main": "./out/src/extension",
"scripts": {
Expand Down Expand Up @@ -201,6 +201,7 @@
"ReindentEqual",
"ReindentObjOps",
"ResizeSpaces",
"WPResizeSpaces",
"RTrim",
"SettersAndGettersPass",
"SplitCurlyCloseAndTokens",
Expand Down Expand Up @@ -319,6 +320,7 @@
"Core pass",
"Core pass",
"Core pass",
"Core pass",
"Add extra parentheses in new instantiations.",
"Replace function aliases to their masters - only basic syntax alias.",
"Vertically align \"=\" of visibility and const blocks.",
Expand Down Expand Up @@ -411,6 +413,7 @@
"ReindentEqual",
"ReindentObjOps",
"ResizeSpaces",
"WPResizeSpaces",
"RTrim",
"SettersAndGettersPass",
"SplitCurlyCloseAndTokens",
Expand Down Expand Up @@ -529,6 +532,7 @@
"Core pass",
"Core pass",
"Core pass",
"Core pass",
"Add extra parentheses in new instantiations.",
"Replace function aliases to their masters - only basic syntax alias.",
"Vertically align \"=\" of visibility and const blocks.",
Expand Down Expand Up @@ -652,4 +656,4 @@
"pjson": "^1.0.9",
"semver": "^7.5.0"
}
}
}

0 comments on commit 408b5fc

Please sign in to comment.