Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webinarium/datatablesbundle
Symfony bundle for DataTables plugin.
https://github.com/webinarium/datatablesbundle
datatables php symfony symfony-bundle
Last synced: about 8 hours ago
JSON representation
Symfony bundle for DataTables plugin.
- Host: GitHub
- URL: https://github.com/webinarium/datatablesbundle
- Owner: webinarium
- License: mit
- Created: 2015-10-29T09:42:48.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-22T23:35:30.000Z (about 2 years ago)
- Last Synced: 2025-01-16T11:26:37.629Z (1 day ago)
- Topics: datatables, php, symfony, symfony-bundle
- Language: PHP
- Homepage:
- Size: 95.7 KB
- Stars: 16
- Watchers: 5
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![PHP](https://img.shields.io/badge/PHP-7.2%2B-blue.svg)](https://secure.php.net/migration72)
[![Latest Stable Version](https://poser.pugx.org/webinarium/datatables-bundle/v/stable)](https://packagist.org/packages/webinarium/datatables-bundle)
[![Build Status](https://travis-ci.com/webinarium/DataTablesBundle.svg?branch=master)](https://travis-ci.com/github/webinarium/DataTablesBundle)
[![Code Coverage](https://scrutinizer-ci.com/g/webinarium/DataTablesBundle/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/webinarium/DataTablesBundle/?branch=master)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/webinarium/DataTablesBundle/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/webinarium/DataTablesBundle/?branch=master)# DataTables Symfony bundle
This bundle helps to implement data source actions for [DataTables](http://www.datatables.net/) JavaScript plugin when it's used in [server-side processing](http://www.datatables.net/manual/server-side) mode.
## Requirements
PHP needs to be a minimum version of PHP 7.2.
Symfony must be of 5.4 or above.
## Installation
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
```console
composer require webinarium/datatables-bundle
```This command requires you to have Composer installed globally, as explained in the [installation chapter](https://getcomposer.org/doc/00-intro.md) of the Composer documentation.
## Development
```console
./vendor/bin/php-cs-fixer fix
XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html=vendor/coverage
```## Usage
Please see the complete usage example [here](../../wiki).