Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
27912cf
Rebrand from Kenepa to Blendbyte, rename package to filament-resource…
bashgeek Mar 24, 2026
4b225b0
Upgrade dependencies to Filament 5, Laravel 12/13, Livewire 4
bashgeek Mar 24, 2026
4e7f190
wip
bashgeek Mar 24, 2026
52f4b3a
Remove unused JS build toolchain
bashgeek Mar 24, 2026
c23f071
Merge branch 'main' of /Users/bashgeek/Coding/filament-resource-lock …
bashgeek Mar 24, 2026
55dd4f8
Fix test suite for Livewire 4 and clean up config
bashgeek Mar 24, 2026
af2c3eb
Add Brazilian Portuguese (pt_BR) translations
bashgeek Mar 24, 2026
41f89ab
Add relation manager locking support (PR #52) and fix Livewire 4 even…
bashgeek Mar 24, 2026
9c0b2bb
Update larastan package name from nunomaduro/larastan to larastan/lar…
bashgeek Mar 24, 2026
f02fb53
Fix type errors and null safety bugs
bashgeek Mar 24, 2026
b3327b1
Add GitHub Actions workflow to run Pest tests on push and PR
bashgeek Mar 24, 2026
529504a
Fix Livewire ComponentNotFoundException by registering component in s…
bashgeek Mar 24, 2026
20328a6
Add callAfterResolving as belt-and-suspenders for Livewire component …
bashgeek Mar 24, 2026
d8593bd
Add PHPStan/Larastan with CI job and fix reported errors
bashgeek Mar 24, 2026
01a1017
Apply Laravel Pint formatting across codebase
bashgeek Mar 24, 2026
9f15625
Merge branch 'main' of github.com:blendbyte/filament-resource-lock
bashgeek Mar 24, 2026
978f438
Merge branch 'add-phpstan-larastan'
bashgeek Mar 24, 2026
4190039
Update GitHub Actions versions and expand PHP matrix
bashgeek Mar 24, 2026
d88bea4
Add fork note, migration guide, badges, and extract PHPStan workflow
bashgeek Mar 25, 2026
08b8d94
Add first-class Laravel event dispatching for lock lifecycle transitions
bashgeek Apr 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 0 additions & 55 deletions .github/CONTRIBUTING.MD

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/run-duster.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/run-tests.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Static Analysis

on:
push:
pull_request:

jobs:
phpstan:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.5'
extensions: dom, curl, libxml, mbstring, zip, pdo, sqlite, pdo_sqlite
coverage: none

- name: Install dependencies
uses: ramsey/composer-install@v4

- name: Run PHPStan
run: vendor/bin/phpstan analyse --memory-limit=512M -c phpstan.neon.dist
34 changes: 34 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Tests

on:
push:
pull_request:

jobs:
test:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php: ['8.2', '8.3', '8.4', '8.5']

name: PHP ${{ matrix.php }}

steps:
- name: Checkout
uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pdo, sqlite, pdo_sqlite
coverage: none

- name: Install dependencies
uses: ramsey/composer-install@v4

- name: Run tests
run: vendor/bin/pest --parallel

28 changes: 0 additions & 28 deletions .github/workflows/update-changelog.yml

This file was deleted.

5 changes: 0 additions & 5 deletions .prettierrc

This file was deleted.

7 changes: 0 additions & 7 deletions CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) Kenepa
Copyright (c) Blendbyte

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading
Loading