-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7b3b759
commit 7e77abf
Showing
7 changed files
with
183 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Let's keep it free and up to date | ||
github: DarkGhostHunter | ||
custom: "https://paypal.me/darkghosthunter" |
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,90 @@ | ||
name: Bug Report | ||
description: | | ||
File a bug report to be fixed. | ||
Sponsors get priority issues, PRs, fixes and requests. Not a sponsor? [You're a just click away!](https://github.com/sponsors/DarkGhostHunter). | ||
title: "[X.x] What does happen that is considered an error or bug?" | ||
labels: ["bug"] | ||
assignees: | ||
- DarkGhostHunter | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
The more detailed this bug report is, the faster it can be reviewed and fixed. | ||
- type: input | ||
id: version-php-os | ||
attributes: | ||
label: PHP & Platform | ||
description: Exact PHP and Platform (OS) versions using this package. | ||
placeholder: 8.1.2 - Ubuntu 22.04 x64 | ||
validations: | ||
required: true | ||
- type: input | ||
id: version-db | ||
attributes: | ||
label: Database | ||
description: Exact DB version using this package, if applicable. | ||
placeholder: MySQL 8.0.28 | ||
validations: | ||
required: false | ||
- type: input | ||
id: version-laravel | ||
attributes: | ||
label: Laravel version | ||
description: Exact Laravel version using this package. | ||
placeholder: 9.2.3 | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: requirements | ||
attributes: | ||
label: Have you done this? | ||
options: | ||
- label: I have checked my logs and I'm sure is a bug in this package. | ||
required: true | ||
- label: I can reproduce this bug in isolation (vanilla Laravel install) | ||
required: true | ||
- label: I can suggest a workaround as a Pull Request | ||
required: false | ||
- type: textarea | ||
id: expectation | ||
attributes: | ||
label: Expectation | ||
description: Write what you expect to (correctly) happen. | ||
placeholder: When I do this, I expect to happen that. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Write what (incorrectly) happens instead. | ||
placeholder: Instead, when I do this, I receive that. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Reproduction | ||
description: Paste the code to assert in a test, or just comment with the repository with the bug to download. | ||
render: php | ||
placeholder: | | ||
$test = Laragear::make()->break(); | ||
static::assertFalse($test); | ||
// or comment with "https://github.com/my-name/my-bug-report" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Stack trace & logs | ||
description: If you have a **full** stack trace, you can copy it here. You may hide sensible information. | ||
placeholder: This is automatically formatted into code, no need for ``` backticks. | ||
render: shell | ||
validations: | ||
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 @@ | ||
blank_issues_enabled: 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,51 @@ | ||
name: Feature request | ||
description: | | ||
Suggest a feature for this package. | ||
Sponsors get priority issues, PRs, fixes and requests. Not a sponsor? [You're a just click away!](https://github.com/sponsors/DarkGhostHunter). | ||
title: "[X.x] Add this cool feature for this package" | ||
labels: ["enhancement"] | ||
assignees: | ||
- DarkGhostHunter | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for contributing to this package! | ||
New features keep this package fresh and fun for everybody to use. | ||
- type: checkboxes | ||
id: requirements | ||
attributes: | ||
label: Please check these requirements | ||
options: | ||
- label: This feature helps everyone using this package | ||
required: true | ||
- label: It's feasible and maintainable | ||
required: true | ||
- label: It's non breaking | ||
required: true | ||
- label: I issued a PR with the implementation (optional) | ||
required: false | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Describe how the feature works | ||
placeholder: | | ||
This new feature would accomplish... | ||
It could be implemented by doing... | ||
And it would be cool because... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: sample | ||
attributes: | ||
label: Code sample | ||
description: Sample a small snippet on how the feature works | ||
placeholder: | | ||
Laragear::newFeature()->cool(); | ||
render: php | ||
validations: | ||
required: true |
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,30 @@ | ||
<!-- | ||
Thanks for contributing to this package! We only accept PR to the latest stable version. | ||
If you're pushing a Feature: | ||
- Title it: "[X.x] This new feature" | ||
- Describe what the new feature enables | ||
- Show a small code snippet of the new feature | ||
- Ensure it doesn't break backward compatibility. | ||
If you're pushing a Fix: | ||
- Title it: "[X.x] FIX: The bug name" | ||
- Describe how it fixes in a few words. | ||
- Ensure it doesn't break backward compatibility. | ||
All Pull Requests run with extensive tests for stable and latest versions of PHP and Laravel. | ||
Ensure your tests pass or your PR may be taken down. | ||
If you're a Sponsor, this PR will have priority review. | ||
Not a Sponsor? Become one at https://github.com/sponsors/DarkGhostHunter | ||
--> | ||
|
||
# Description | ||
|
||
This feature/fix allows to... | ||
|
||
# Code samples | ||
|
||
```php | ||
Laragear::sample(); | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,8 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: composer | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "09:00" | ||
open-pull-requests-limit: 10 |