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
5 changes: 2 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@
/composer-require-checker.json export-ignore
/docs export-ignore
/ecs.php export-ignore
/infection.json5 export-ignore
/phpstan-console.neon export-ignore
/phpstan.neon export-ignore
/infection.json* export-ignore
/phpstan*.neon* export-ignore
/phpunit.xml.dist export-ignore
/psalm.xml export-ignore
/rector.php export-ignore
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ name: build

jobs:
phpunit:
uses: php-forge/actions/.github/workflows/phpunit.yml@main
uses: php-forge/actions/.github/workflows/phpunit.yml@v1
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
composer-command: |
composer require yiisoft/yii2:22.0.x-dev --prefer-dist --no-progress --no-interaction --no-scripts --ansi
concurrency-group: phpunit-${{ github.workflow }}-${{ github.ref }}
phpunit-compatibility:
uses: php-forge/actions/.github/workflows/phpunit.yml@main
uses: php-forge/actions/.github/workflows/phpunit.yml@v1
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ name: Composer require checker

jobs:
composer-require-checker:
uses: php-forge/actions/.github/workflows/composer-require-checker.yml@main
uses: php-forge/actions/.github/workflows/composer-require-checker.yml@v1
2 changes: 1 addition & 1 deletion .github/workflows/ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ name: ecs

jobs:
easy-coding-standard:
uses: php-forge/actions/.github/workflows/ecs.yml@main
uses: php-forge/actions/.github/workflows/ecs.yml@v1
4 changes: 2 additions & 2 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ name: static analysis

jobs:
phpstan:
uses: php-forge/actions/.github/workflows/phpstan.yml@main
uses: php-forge/actions/.github/workflows/phpstan.yml@v1
with:
concurrency-group: phpstan-${{ github.workflow }}-${{ github.ref }}
phpstan-console:
uses: php-forge/actions/.github/workflows/phpstan.yml@main
uses: php-forge/actions/.github/workflows/phpstan.yml@v1
with:
configuration: 'phpstan-console.neon'
concurrency-group: phpstan-console-${{ github.workflow }}-${{ github.ref }}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Bug #71: Update `.gitattributes` to exclude additional files from the package (@terabytesoftw)
- Bug #72: Exclude `phpstan-console.neon` from the package in `.gitattributes` (@terabytesoftw)
- Bug #73: Update workflow actions to use `v1` stable version instead of `main`, update `LICENSE.md` (@terabytesoftw)

## 0.3.1 August 16, 2025

Expand Down
6 changes: 3 additions & 3 deletions LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ are permitted provided that the following conditions are met:
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Yii Software nor the names of its contributors may be
used to endorse or promote products derived from this software without
specific prior written permission.
* Neither the name of Yii2 Extensions (Terabytesoftw) nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
Expand Down
Loading