Skip to content
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Donate](https://img.shields.io/badge/donate-paypal-blue.svg)](https://www.paypal.me/yajra)
[![Donate](https://img.shields.io/badge/donate-patreon-blue.svg)](https://www.patreon.com/bePatron?u=4521203)

[![Laravel 4.2|5.x|6|7|8|9|10|11](https://img.shields.io/badge/Laravel-4.2|5.x|6|7|8|9|10|11-orange.svg)](http://laravel.com)
[![Laravel 4.2|5.x|6|7|8|9|10|11|12](https://img.shields.io/badge/Laravel-4.2|5.x|6|7|8|9|10|11|12-orange.svg)](http://laravel.com)
[![Latest Stable Version](https://img.shields.io/packagist/v/yajra/laravel-datatables-oracle.svg)](https://packagist.org/packages/yajra/laravel-datatables-oracle)
[![Continuous Integration](https://github.com/yajra/laravel-datatables/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/yajra/laravel-datatables/actions/workflows/continuous-integration.yml)
[![Static Analysis](https://github.com/yajra/laravel-datatables/actions/workflows/static-analysis.yml/badge.svg)](https://github.com/yajra/laravel-datatables/actions/workflows/static-analysis.yml)
Expand Down Expand Up @@ -86,19 +86,20 @@ return DataTables::make(User::all())->toJson();
| 9.x | 10.x |
| 10.x | 10.x |
| 11.x | 11.x |
| 12.x | 12.x |

## Quick Installation

### Option 1: Install all DataTables libraries

```bash
composer require yajra/laravel-datatables:"^11"
composer require yajra/laravel-datatables:"^12"
```

### Option 2: Install only this library

```bash
composer require yajra/laravel-datatables-oracle:"^11"
composer require yajra/laravel-datatables-oracle:"^12"
```

#### Service Provider & Facade (Optional on Laravel 5.5+)
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@
],
"require": {
"php": "^8.2",
"illuminate/database": "^11",
"illuminate/filesystem": "^11",
"illuminate/http": "^11",
"illuminate/support": "^11",
"illuminate/view": "^11"
"illuminate/database": "^12",
"illuminate/filesystem": "^12",
"illuminate/http": "^12",
"illuminate/support": "^12",
"illuminate/view": "^12"
},
"require-dev": {
"algolia/algoliasearch-client-php": "^3.4.1",
"larastan/larastan": "^2.9.1",
"larastan/larastan": "^3.1.0",
"laravel/pint": "^1.14",
"laravel/scout": "^10.8.3",
"meilisearch/meilisearch-php": "^1.6.1",
"orchestra/testbench": "^9",
"rector/rector": "^1.0"
"orchestra/testbench": "^10",
"rector/rector": "^2.0"
},
"suggest": {
"yajra/laravel-datatables-export": "Plugin for server-side exporting using livewire and queue worker.",
Expand Down
Loading