Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

psiphp/grid

Repository files navigation

Psi Grid

experimental Build Status StyleCI Scrutinizer Code Quality Latest Stable Version Total Downloads

This component is part of the Psi Content Management Framework

The grid component provides flexible data grids for objects based on class metadata.

$gridFactory = GridFactoryBuilder::createWithDefaults(new OrmAgent($entityManager))

    ->addAnnotationDriver()
    ->createGridFactory();

$grid = $gridFactory->createGrid(MyEntity::class, []);

$view = $grid->createView();

Documentation

See the documentation at readthedocs.

Installation

Require in composer.json:

$ composer require 'psiphp/grid'

Contributing

All contributions are welcome, go ahead and make a PR!