-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from ericsizemore/6.x-dev
Bring 6.x dev to master, as we are close to 6.0.0 release
- Loading branch information
Showing
104 changed files
with
4,912 additions
and
2,138 deletions.
There are no files selected for viewing
This file contains 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,17 +1,24 @@ | ||
# Set the default behavior, in case people don't have core.autocrlf set. | ||
* text eol=lf | ||
|
||
*.gif binary | ||
*.png binary | ||
|
||
# Ignore all test and documentation with "export-ignore". | ||
/.github export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/.scrutinizer.yml export-ignore | ||
/tests export-ignore | ||
/composer.lock export-ignore | ||
/mkdocs.yml export-ignore | ||
/phpstan.neon export-ignore | ||
/phpunit.xml export-ignore | ||
/rector.php export-ignore | ||
/.php-cs-fixer.dist.php export-ignore | ||
/.github export-ignore | ||
/docs export-ignore | ||
/tests export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/.php-cs-fixer.dist.php export-ignore | ||
/.scrutinizer.yml export-ignore | ||
/backward-compatibility.md export-ignore | ||
/CHANGELOG.md export-ignore | ||
/CODE_OF_CONDUCT.md export-ignore | ||
/composer.lock export-ignore | ||
/CONTRIBUTING.md export-ignore | ||
/mkdocs.yml export-ignore | ||
/phpstan.neon export-ignore | ||
/phpstan-baseline.neon export-ignore | ||
/phpunit.xml export-ignore | ||
/renovate.json export-ignore | ||
/UPGRADING.md export-ignore |
This file contains 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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Bug Report | ||
description: Existing feature does not behave as expected. | ||
labels: [ "bug", "unverified" ] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Before reporting a bug, make sure Simple Counter is up-to-date and the problem is/was not reported already. | ||
- type: textarea | ||
id: problem-description | ||
attributes: | ||
label: Problem description | ||
description: Please describe the problem you have encountered | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: minimal-reproducer | ||
attributes: | ||
label: Minimal Reproducer | ||
description: | | ||
Please provide a minimal code snippet that should be run to reproduce the problem. | ||
If relevant, provide the expected output, the actual output and/or the error that occurred, if any. | ||
Please use markdown syntax for each code snippet. | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Library Version | ||
description: Which version of Simple Counter is being run? (in X.Y.Z format) | ||
validations: | ||
required: true | ||
- type: input | ||
id: php-version | ||
attributes: | ||
label: PHP version | ||
description: Which PHP version is Simple Counter being run on? | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: run-method | ||
attributes: | ||
label: How do you run Simple Counter? | ||
multiple: false | ||
options: | ||
- Composer package | ||
- Manual installation | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Contribution Checks | ||
options: | ||
- label: I have verified whether this problem has already been reported. | ||
required: false |
This file contains 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Feature Request | ||
description: I have a suggestion for a new feature (and possibly want to implement it). | ||
labels: [ "enhancement", "unverified" ] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
> [!IMPORTANT] | ||
> Before requesting a new feature, make sure your version of Simple Counter is up-to-date. | ||
- type: textarea | ||
id: feature-request | ||
attributes: | ||
label: Feature Request | ||
description: Please describe the feature you would like to see implemented. | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Contribution Checks | ||
options: | ||
- label: I have verified whether this feature request was already discussed. | ||
required: false |
This file contains 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Support question? | ||
url: https://github.com/ericsizemore/simple_counter/discussions/categories/q-a | ||
about: If you have any questions about configuring or using Simple Counter, please open a new Q&A discussion. |
This file contains 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Pull Request | ||
<!-- | ||
PR title needs to be prefixed with a conventional commit type | ||
(chore,ci,deprecate,docs,feat,fix,refactor,revert) | ||
It should also be brief and descriptive for a good changelog entry | ||
examples: "feat: add new implementation" or "fix: remove unused imports" | ||
--> | ||
|
||
## Proposed Changes | ||
<!-- Describe what the changes are and link to a Discussion or Issue if one exists --> | ||
|
||
## Readiness Checklist | ||
|
||
### Author/Contributor | ||
|
||
- [ ] You have read [CONTRIBUTING](https://github.com/ericsizemore/simple_counter/blob/master/CONTRIBUTING.md) | ||
- [ ] If documentation is needed for this change, has that been included in this pull request | ||
- [ ] run `composer run-script test` and ensure you have test coverage for the lines you are introducing | ||
- [ ] run `composer run-script phpstan` and fix any issues that you have introduced | ||
- [ ] run `composer run-script psalm` and fix any issues that you have introduced | ||
- [ ] run `composer run-script cs:check` and fix any issues that you have introduced | ||
|
||
### Reviewer | ||
|
||
- [ ] Label as either `fix`, `documentation`, or `enhancement` | ||
- [ ] Additionally label as `verified` or `unverified` |
This file contains 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 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Psalm Static analysis | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
psalm: | ||
name: Psalm | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Psalm | ||
uses: docker://vimeo/psalm-github-actions:latest | ||
with: | ||
args: --shepherd | ||
composer_require_dev: true | ||
security_analysis: true | ||
report_file: results.sarif | ||
|
||
- name: Upload Security Analysis results to GitHub | ||
uses: github/codeql-action/upload-sarif@v3 | ||
with: | ||
sarif_file: results.sarif |
This file contains 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 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,14 +1,4 @@ | ||
.idea/ | ||
vendor/ | ||
build/ | ||
site/ | ||
composer.phar | ||
.phpunit.result.cache | ||
dochtml/ | ||
vendor/ | ||
.php-cs-fixer.cache | ||
*.iws | ||
out/ | ||
.idea_modules/ | ||
atlassian-ide-plugin.xml | ||
.idea/php.xml | ||
.idea/simple_counter.iml | ||
clover.xml |
This file contains 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 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
build: | ||
image: default-bionic | ||
environment: | ||
php: 8.2.13 | ||
php: 8.2.15 | ||
nodes: | ||
analysis: | ||
dependencies: | ||
|
Oops, something went wrong.