Skip to content

Commit b126660

Browse files
First Initial
0 parents  commit b126660

30 files changed

+9124
-0
lines changed

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.yml]
15+
indent_size = 2

.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
APP_ENV=production

.gitattributes

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
* text=auto eol=lf
2+
3+
/.github export-ignore
4+
5+
.editorconfig export-ignore
6+
.gitattributes export-ignore
7+
.gitignore export-ignore
8+
9+
.env.example export-ignore
10+
11+
README.md export-ignore
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: Bug Report
2+
description: Report a bug or other issue
3+
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report!
9+
10+
⚠️Review existing issues to see whether someone else has already reported your issue.
11+
12+
- type: textarea
13+
id: environment
14+
attributes:
15+
label: Environment
16+
description: |
17+
Tip: Use the `composer global info dragon-code/codestyler | grep versions` command to get information for Laravel Lang.
18+
Tip: Use the `php -v` command to get information for PHP.
19+
value: |
20+
- PHP Version:
21+
- GitHub Notifications Version:
22+
validations:
23+
required: true
24+
25+
- type: textarea
26+
id: description
27+
attributes:
28+
label: Issue description
29+
description: |
30+
Be as specific and detailed as possible to help us triaging your issue. Screenshots and/or animations can be very useful in helping to understand the issue you're facing.
31+
32+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
33+
Tip: You can use https://www.screentogif.com to record animations and videos.
34+
validations:
35+
required: true
36+
37+
- type: textarea
38+
id: steps
39+
attributes:
40+
label: Steps to reproduce
41+
description: Take some time to try and reproduce the issue, then explain how to do so here.
42+
validations:
43+
required: true
44+
45+
- type: markdown
46+
attributes:
47+
value: |
48+
❤️ The Dragon Code? Please consider supporting our collective on [Boosty](https://boosty.to/dragon-code).

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Feature Proposal
2+
description: Propose a new feature
3+
4+
body:
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: Feature description
9+
description: |
10+
Think through your proposal and describe it clearly.
11+
12+
Note that features are only added to the most recent version of Laravel Lang.
13+
validations:
14+
required: true
15+
16+
- type: markdown
17+
attributes:
18+
value: |
19+
❤️ The Dragon Code? Please consider supporting our collective on [Boosty](https://boosty.to/dragon-code).

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!--
2+
Pull requests without a descriptive title, thorough description, or tests will be closed.
3+
4+
In addition, please describe the benefit to end users; the reasons it does not break any existing features; how it makes building web applications easier, etc.
5+
-->

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
-
4+
package-ecosystem: github-actions
5+
directory: /
6+
schedule:
7+
interval: daily

.github/workflows/code-style.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Code Style
2+
3+
on: [ push, pull_request ]
4+
5+
permissions: write-all
6+
7+
jobs:
8+
style:
9+
name: Code Style
10+
uses: TheDragonCode/.github/.github/workflows/code-style.yml@main
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
9+
jobs:
10+
Update:
11+
uses: TheDragonCode/.github/.github/workflows/release-drafter.yml@main

0 commit comments

Comments
 (0)