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
11 changes: 1 addition & 10 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,8 @@
"yzhang.markdown-all-in-one"
],
"settings": {
"editor.formatOnSave": true,
"[php]": {
"editor.tabSize": 4,
"editor.defaultFormatter": "junstyle.php-cs-fixer"
},
"php-cs-fixer.executablePath": "${workspaceFolder}/vendor/bin/php-cs-fixer",
"php-cs-fixer.config": "${workspaceFolder}/.php-cs-fixer.dist.php",
"php-cs-fixer.onsave": true,
"markdown.extension.list.indentationSize": "adaptive",
"markdown.extension.italic.indicator": "_",
"markdown.extension.orderedList.marker": "one"
"php-cs-fixer.config": "${workspaceFolder}/.php-cs-fixer.dist.php"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ indent_size = 4
tab_width = 4
ij_continuation_indent_size = 4

[{composer.json,.phpunit.result.cache,composer.lock}]
[{.vscode/settings.json,composer.json,.phpunit.result.cache,composer.lock}]
indent_size = 4
tab_width = 4
ij_continuation_indent_size = 4
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@
# This is what is relevant for composer installs
.devcontainer export-ignore
.github export-ignore
.vscode export-ignore
.editorconfig export-ignore
.gitignore export-ignore
.gitattributes export-ignore
CODEOWNERS export-ignore
*.md export-ignore
*.dist.php export-ignore
*release*.json export-ignore
README.md -export-ignore export-subst
CHANGELOG.md -export-ignore export-subst
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ version: 2
updates:
- package-ecosystem: github-actions
directory: /
target-branch: develop
labels:
- "dependabot :robot:"
schedule:
Expand All @@ -18,6 +19,7 @@ updates:

- package-ecosystem: devcontainers
directory: /
target-branch: develop
labels:
- "dependabot :robot:"
schedule:
Expand All @@ -27,6 +29,7 @@ updates:

- package-ecosystem: composer
directory: /
target-branch: develop
labels:
- "dependabot :robot:"
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache Composer dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ jobs:
steps:
- name: Create Release PR
uses: googleapis/release-please-action@v4
#with:
# # Bot PAT with access to Workflows
# # The built-in GITHUB_TOKEN has cannot trigger other workflows
# # Use custom token once banned iwf-web-bot is resolved
# token: ${{ secrets.GH_PAT }}
with:
# Bot PAT with access to Workflows
# The built-in GITHUB_TOKEN has cannot trigger other workflows
token: ${{ secrets.GH_PAT }}
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"editor.formatOnSave": true,
"[php]": {
"editor.tabSize": 4,
"editor.defaultFormatter": "junstyle.php-cs-fixer"
},
"php-cs-fixer.onsave": true,
"markdown.extension.list.indentationSize": "adaptive",
"markdown.extension.italic.indicator": "_",
"markdown.extension.orderedList.marker": "one"
}
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

* Release files are included in install ([e87295d](https://github.com/iwf-web/php-coding-standard/commit/e87295da465512dcd08c6ff5583e44153aea1525))

## [1.0.0](https://github.com/iwf-web/php-coding-standard/compare/0.1.0...1.0.0) (2025-12-19)
## [1.0.0](https://github.com/iwf-web/php-coding-standard/compare/9522814...1.0.0) (2025-12-19)


### ✨ Features
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ Key customizations over the base `@PhpCsFixer:risky` rule set:

Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct and the process for submitting pull requests.

This project uses [Conventional Commits](https://www.conventionalcommits.org/) for automated releases and changelog generation.

## Versioning

We use [SemVer](http://semver.org/) for versioning. For available versions, see the [tags on this repository][gh-tags].
Expand Down
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,16 @@
"exclude": [
".devcontainer",
".github",
".vscode",
".editorconfig",
".gitignore",
".gitattributes",
"CODEOWNERS",
"*.md",
"*.dist.php",
"*release*.json"
"*release*.json",
"!README.md",
"!CHANGELOG.md"
]
}
}