Download the PHP package zvizvi/villament without Composer

On this page you can find all versions of the php package zvizvi/villament. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package villament

Villament

Replace the built-in Livewire-rendered table on a Filament v5 Resource List page with a Vue 3 island, while keeping 100% of the data pipeline in Filament's PHP layer.

After the initial page load, all table interactions — sorting, pagination, global & per-column search, filtering — are performed via lightweight AJAX (JSON) requests instead of Livewire roundtrips. The Vue table is fed from the Resource's existing table() schema: no redefining columns, filters, scoping, or authorization.

Status: Phase 0 (skeleton & fixtures). Nothing usable ships yet — see the roadmap below.

Requirements

Dependency Constraint
PHP ^8.3
Laravel ^12.0
Filament ~5.6.0 (pinned per tested minor; widens as the CI matrix grows)
Vue ^3.5 (bundled, no host-app requirement)

Roadmap

Usage

  1. Register the plugin on your panel:

  2. Swap the parent class of your resource's List page (one line — columns, filters, scoping and authorization all come from your existing table() and getEloquentQuery()):

Or apply the trait to a customized List page: use Zvizvi\Villament\Concerns\HasVillamentTable;.

After the initial paint (schema + first page inlined, no extra requests), sorting, searching and pagination hit a JSON endpoint that runs behind your panel's full middleware stack, checks canViewAny(), and whitelists every request parameter against the table schema.

Development

Design decisions and every internal Filament API the package touches are logged in AGENTS.md.

Test fixtures

tests/Fixtures/ boots a real Filament panel (admin) with a UserResource designed to exercise every serialization path the package will need. The parity rule governs all future phases: any behavior where the Vue path and the stock Filament path disagree on which records, in which order is a bug.

License

MIT


All versions of villament with dependencies

PHP Build Version
Package Version
Requires php Version ^8.3
filament/filament Version ~5.7.0
spatie/laravel-package-tools Version ^1.16
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package zvizvi/villament contains the following files

Loading the files please wait ...