Skip to content

Commit 25bee91

Browse files
committed
Add community health files, issue templates, and CI workflows for better project management.
1 parent 7dd0f6c commit 25bee91

8 files changed

Lines changed: 854 additions & 0 deletions

File tree

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
github: [terabytesoftw]
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: 🐛 Bug Report
3+
description: Let us know about problem
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
> ⚠️ DON'T CREATE SECURITY ISSUE here. For security vulnerabilities, please use the security advisory feature in the specific project repository instead.
9+
- type: textarea
10+
id: description
11+
attributes:
12+
label: Description
13+
description: Provide a detailed description of the issue. Include all relevant information to help us understand and reproduce the problem.
14+
validations:
15+
required: true
16+
- type: input
17+
id: package-version
18+
attributes:
19+
label: Package version
20+
description: Specify the exact package version you're using
21+
placeholder: "0.1.0"
22+
validations:
23+
required: true
24+
- type: input
25+
id: php-version
26+
attributes:
27+
label: PHP version
28+
description: Specify the exact PHP version you're using (run `php -v` to check)
29+
placeholder: "8.5.0"
30+
validations:
31+
required: true
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: 🚀 Feature request
3+
description: Suggest an idea for improvement
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Proposed new feature or change
8+
description: |
9+
Describe the feature and explain why it's needed.
10+
validations:
11+
required: true

.github/workflows/linter.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
on:
3+
- pull_request
4+
- push
5+
6+
name: linter
7+
8+
permissions:
9+
checks: write
10+
contents: read
11+
statuses: write
12+
13+
jobs:
14+
linter:
15+
uses: yii2-framework/actions/.github/workflows/super-linter.yml@v1
16+
secrets:
17+
AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# codecoverage (if present)
2+
code_coverage
3+
4+
# codeception (if present)
5+
c3.php
6+
7+
# composer
8+
composer.lock
9+
10+
# gitHub copilot config (if present)
11+
.github/agents/**
12+
.github/copilot-instructions.md
13+
.github/copilot/**
14+
.github/instructions/**
15+
.github/prompts/**
16+
.github/skills/**
17+
18+
# mac ds_store (if present)
19+
.DS_Store
20+
21+
# netbeans project (if present)
22+
nbproject
23+
24+
# node_modules (if present)
25+
node_modules
26+
package-lock.json
27+
28+
# phpstorm project (if present)
29+
.idea
30+
31+
# phpunit (if present)
32+
.phpunit.cache
33+
.phpunit.result.cache
34+
phpunit.xml*
35+
36+
# vagrant (if present)
37+
.vagrant
38+
39+
# vendor
40+
vendor
41+
42+
# vscode project (if present)
43+
.vscode
44+
45+
# windows thumbnail cache (if present)
46+
Thumbs.db
47+
48+
# zend studio for eclipse project (if present)
49+
.buildpath
50+
.project
51+
.settings

0 commit comments

Comments
 (0)