Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2.5.0
uses: dependabot/fetch-metadata@v3.1.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

Expand Down
17 changes: 14 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
types:
- closed
branches:
- 4.x
- 5.x
paths:
- '**.php'

Expand All @@ -23,8 +23,19 @@ jobs:
with:
ref: ${{ github.head_ref }}

- name: Fix PHP code style issues
uses: aglipanci/laravel-pint-action@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3

- name: Install dependencies
run: composer install --no-interaction

- name: Run Rector
run: composer refactor

- name: Run Pint
run: composer lint

- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v7
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- opened
- synchronize
branches:
- 4.x
- 5.x
paths:
- '**.php'
- '.github/workflows/tests.yml'
Expand All @@ -22,7 +22,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.3, 8.2]
php: [8.4, 8.3]
laravel: [12.*, 11.*]
stability: [prefer-stable]
include:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@ docs
node_modules
phpunit.xml
phpstan.neon
testbench.yaml
vendor
16 changes: 7 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
![quick-create-og](https://res.cloudinary.com/aw-codes/image/upload/w_1200,f_auto,q_auto/plugins/quick-create/awcodes-quick-create.jpg)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/awcodes/filament-quick-create.svg?style=flat-square)](https://packagist.org/packages/awcodes/filament-quick-create)
[![Total Downloads](https://img.shields.io/packagist/dt/awcodes/filament-quick-create.svg?style=flat-square)](https://packagist.org/packages/awcodes/filament-quick-create)

# Quick Create

Plugin for [Filament Panels](https://filamentphp.com) that adds a dropdown menu to the header to quickly create new items from anywhere in your app.

[![Latest Version](https://img.shields.io/github/release/awcodes/filament-quick-create.svg?style=flat-square&color=blue&label=Release)](https://github.com/awcodes/filament-quick-create/releases)
[![MIT Licensed](https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square)](LICENSE.md)
[![Total Downloads](https://img.shields.io/packagist/dt/awcodes/filament-quick-create.svg?style=flat-square&color=blue&label=Downloads)](https://packagist.org/packages/awcodes/filament-quick-create)
[![GitHub Repo stars](https://img.shields.io/github/stars/awcodes/filament-quick-create?style=flat-square&color=blue&label=Stars)](https://github.com/awcodes/filament-quick-create/stargazers)

## Compatibility

| Package Version | Filament Version |
|-----------------|------------------|
| 2.x | 2.x |
| 3.x | 3.x |
| 4.x | 4.x |

## Upgrading from v2 to v3

If you are upgrading from version 2 to version 3, you will need to update the namespace anywhere you are using the plugin from `Awcodes\FilamentQuickCreate` to `Awcodes\QuickCreate`.
| 5.x | 5.x |

## Installation

Expand Down Expand Up @@ -299,4 +297,4 @@ Please review [our security policy](.github/SECURITY.md) on how to report securi

## License

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
],
"require": {
"php": "^8.2",
"filament/filament": "^4.0",
"filament/filament": "^5.0",
"spatie/laravel-package-tools": "^1.15.0"
},
"require-dev": {
"laravel/pint": "^1.10",
"orchestra/testbench": "^9.0|^10.0",
"pestphp/pest": "^3.7",
"pestphp/pest-plugin-laravel": "^3.0",
"pestphp/pest-plugin-livewire": "^3.0",
"pestphp/pest": "^4.3",
"pestphp/pest-plugin-laravel": "^4.0",
"pestphp/pest-plugin-livewire": "^4.0",
"rector/rector": "^2.0",
"spatie/laravel-ray": "^1.26"
},
Expand Down
Loading
Loading