Skip to content

Commit 0ae3906

Browse files
committed
wip
1 parent a45b107 commit 0ae3906

13 files changed

Lines changed: 271 additions & 374 deletions

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ contact_links:
1111
about: Learn how to notify us for sensitive bugs
1212
- name: Report a bug
1313
url: https://github.com/:vendor_name/:package_name/issues/new
14-
about: Report a reproducable bug
14+
about: Report a reproducible bug

.github/workflows/dependabot-auto-merge.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
name: dependabot-auto-merge
1+
name: Dependabot Auto Merge
2+
23
on: pull_request_target
34

45
permissions:
@@ -29,4 +30,4 @@ jobs:
2930
run: gh pr merge --auto --merge "$PR_URL"
3031
env:
3132
PR_URL: ${{github.event.pull_request.html_url}}
32-
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
33+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

.github/workflows/fix-php-code-style-issues.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Fix PHP code style issues
1+
name: Fix PHP Code Styling
22

33
on: [push]
44

@@ -18,4 +18,4 @@ jobs:
1818
- name: Commit changes
1919
uses: stefanzweifel/git-auto-commit-action@v4
2020
with:
21-
commit_message: Fix styling
21+
commit_message: Fix styling

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: run-tests
1+
name: Run Tests
22

33
on:
44
push:
@@ -44,4 +44,4 @@ jobs:
4444
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
4545
4646
- name: Execute tests
47-
run: vendor/bin/pest
47+
run: vendor/bin/pest

.github/workflows/update-changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Update Changelog"
1+
name: Update Changelog
22

33
on:
44
release:
@@ -25,4 +25,4 @@ jobs:
2525
with:
2626
branch: main
2727
commit_message: Update CHANGELOG
28-
file_pattern: CHANGELOG.md
28+
file_pattern: CHANGELOG.md

composer.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
":package_slug"
88
],
99
"homepage": "https://github.com/:vendor_slug/:package_slug",
10+
"support": {
11+
"issues": "https://github.com/:vendor_slug/:package_slug/issues",
12+
"source": "https://github.com/:vendor_slug/:package_slug"
13+
},
1014
"license": "MIT",
1115
"authors": [
1216
{
@@ -17,7 +21,9 @@
1721
],
1822
"require": {
1923
"php": "^8.0",
20-
"filament/filament": "^2.0",
24+
"filament/filament": "^3.0",
25+
"filament/forms": "^3.0",
26+
"filament/tables": "^3.0",
2127
"spatie/laravel-package-tools": "^1.13.5",
2228
"illuminate/contracts": "^9.0"
2329
},

0 commit comments

Comments
 (0)