-
-
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
Showing
6 changed files
with
130 additions
and
33 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,18 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[*.{yml,yaml}] | ||
indent_size = 2 | ||
|
||
[docker-compose.yml] | ||
indent_size = 4 |
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,24 @@ | ||
* text=auto | ||
|
||
*.blade.php diff=html | ||
*.css diff=css | ||
*.html diff=html | ||
*.md diff=markdown | ||
*.php diff=php | ||
|
||
/.github export-ignore | ||
/bin export-ignore | ||
/tests export-ignore | ||
/types export-ignore | ||
.editorconfig export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.styleci.yml export-ignore | ||
CHANGELOG-* export-ignore | ||
CODE_OF_CONDUCT.md export-ignore | ||
CONTRIBUTING.md export-ignore | ||
docker-compose.yml export-ignore | ||
phpstan.src.neon.dist export-ignore | ||
phpstan.types.neon.dist export-ignore | ||
phpunit.xml.dist export-ignore | ||
RELEASE.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,79 @@ | ||
### All Submissions: | ||
|
||
* [ ] My code follow the [Laravel' coding standards](https://laravel.com/docs/11.x/contributions) | ||
* [ ] My code satisfies feature requirements | ||
* [ ] My code is tested | ||
* [ ] My code passes the PHPCS tests | ||
* [ ] My code has proper inline documentation | ||
* [ ] I've included related pull request(s) (optional) | ||
* [ ] I've included developer documentation (optional) | ||
* [ ] I've added proper labels to this pull request | ||
|
||
<!-- Mark completed items with an [x] --> | ||
|
||
<!-- You can erase any parts of this template not applicable to your Pull Request. --> | ||
|
||
### Changes proposed in this Pull Request: | ||
|
||
<!-- Describe the changes made to this Pull Request and the reason for such changes. --> | ||
|
||
### Related Pull Request(s) | ||
|
||
* Full PR Link | ||
|
||
|
||
### Closes | ||
|
||
* Closes # | ||
|
||
|
||
### How to test the changes in this Pull Request: | ||
|
||
* Steps or issue link | ||
|
||
|
||
### Changelog entry | ||
|
||
*Title* | ||
|
||
Detailed Description of the pull request. What was previous behaviour | ||
and what will be changed in this PR. | ||
|
||
|
||
### Before Changes | ||
|
||
Describe the issue before changes with screenshots(s). | ||
|
||
|
||
### After Changes | ||
|
||
Describe the issue after changes with screenshot(s). | ||
|
||
|
||
### Feature Video (optional) | ||
|
||
Link of detailed video if this PR is for a feature. | ||
|
||
|
||
### PR Self Review Checklist: | ||
|
||
* Code is not following code style guidelines | ||
* Bad naming: make sure you would understand your code if you read it a few months from now. | ||
* KISS: Keep it simple, Sweetie (not stupid!). | ||
* DRY: Don't Repeat Yourself. | ||
* Code that is not readable: too many nested 'if's are a bad sign. | ||
* Performance issues | ||
* Complicated constructions that need refactoring or comments: code should almost always be self-explanatory. | ||
* Grammar errors. | ||
|
||
|
||
### FOR PR REVIEWER ONLY: | ||
|
||
> As a reviewer, your feedback should be focused on the idea, not the person. Seek to understand, be respectful, and focus on constructive dialog. | ||
> As a contributor, your responsibility is to learn from suggestions and iterate your pull request should it be needed based on feedback. Seek to collaborate and produce the best possible contribution to the greater whole. | ||
* [ ] Correct — Does the change do what it’s supposed to? ie: code 100% fulfilling the requirements? | ||
* [ ] Secure — Would a nefarious party find some way to exploit this change? ie: everything is sanitized/escaped appropriately for any SQL or XSS injection possibilities? | ||
* [ ] Readable — Will your future self be able to understand this change months down the road? | ||
* [ ] Elegant — Does the change fit aesthetically within the overall style and architecture? |
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 was deleted.
Oops, something went wrong.
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