-
-
Notifications
You must be signed in to change notification settings - Fork 19
Add support PHP 8.5, centralize CODE_OF_CONDUCT.MD, PULL_REQUEST_TEMPLATE, and update composer scripts.
#296
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
1976766
Add support `PHP 8.5`, centralize `CODE_OF_CONDUCT.MD`, `PULL_REQUEST…
terabytesoftw b3388a3
Exclude `./src/assets` directory from code coverage.
terabytesoftw 509be03
Add line to `CHANGELOG.md`.
terabytesoftw ebeddbd
Apply fixed review.
terabytesoftw fa4ef19
Refactor workflow YAML files to standardize push configuration.
terabytesoftw 2ff4f93
Apply fixed review.
terabytesoftw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,29 +1,30 @@ | ||
| name: Composer require checker | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| on: | ||
| pull_request: | ||
| pull_request: &ignore-paths | ||
| paths-ignore: | ||
| - 'docs/**' | ||
| - 'README.md' | ||
| - 'CHANGELOG.md' | ||
| - '.gitignore' | ||
| - '.gitattributes' | ||
| - 'infection.json.dist' | ||
| - 'phpunit.xml.dist' | ||
| - 'psalm.xml' | ||
|
|
||
| push: | ||
| <<: *ignore-paths | ||
| branches: ['master'] | ||
| paths-ignore: | ||
| - 'docs/**' | ||
| - 'README.md' | ||
| - 'CHANGELOG.md' | ||
| - '.gitignore' | ||
| - '.gitattributes' | ||
| - 'infection.json.dist' | ||
| - 'phpunit.xml.dist' | ||
| - 'psalm.xml' | ||
|
|
||
| name: Composer require checker | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| composer-require-checker: | ||
| uses: yiisoft/actions/.github/workflows/composer-require-checker.yml@master | ||
| with: | ||
| php: >- | ||
| ['8.1', '8.2', '8.3', '8.4', '8.5'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,27 +1,32 @@ | ||
| name: mutation test | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| on: | ||
| pull_request: | ||
| pull_request: &ignore-paths | ||
| paths-ignore: | ||
| - 'docs/**' | ||
| - 'README.md' | ||
| - 'CHANGELOG.md' | ||
| - '.gitignore' | ||
| - '.gitattributes' | ||
| - 'infection.json.dist' | ||
| - 'psalm.xml' | ||
|
|
||
| push: | ||
| <<: *ignore-paths | ||
| branches: ['master'] | ||
| paths-ignore: | ||
| - 'docs/**' | ||
| - 'README.md' | ||
| - 'CHANGELOG.md' | ||
| - '.gitignore' | ||
| - '.gitattributes' | ||
| - 'psalm.xml' | ||
|
|
||
| name: mutation test | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| mutation: | ||
| uses: yiisoft/actions/.github/workflows/roave-infection.yml@master | ||
| secrets: | ||
| STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} | ||
| with: | ||
| php: >- | ||
| ['8.5'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,27 +1,30 @@ | ||
| name: static analysis | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| on: | ||
| pull_request: | ||
| pull_request: &ignore-paths | ||
| paths-ignore: | ||
| - 'docs/**' | ||
| - 'README.md' | ||
| - 'CHANGELOG.md' | ||
| - '.gitignore' | ||
| - '.gitattributes' | ||
| - 'infection.json.dist' | ||
| - 'phpunit.xml.dist' | ||
| - 'psalm.xml' | ||
|
|
||
| push: | ||
| <<: *ignore-paths | ||
| branches: ['master'] | ||
| paths-ignore: | ||
| - 'docs/**' | ||
| - 'README.md' | ||
| - 'CHANGELOG.md' | ||
| - '.gitignore' | ||
| - '.gitattributes' | ||
| - 'infection.json.dist' | ||
| - 'phpunit.xml.dist' | ||
|
|
||
| name: static analysis | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| psalm: | ||
| uses: yiisoft/actions/.github/workflows/psalm.yml@master | ||
| with: | ||
| php: >- | ||
| ['8.1', '8.2', '8.3', '8.4', '8.5'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -69,7 +69,7 @@ use Yiisoft\Html\Tag\P; | |
|
|
||
| ## Requirements | ||
|
|
||
| - PHP 8.1 or higher. | ||
| - PHP 8.1 - 8.5. | ||
|
|
||
| ## Installation | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.