Skip to content

Commit 18396f1

Browse files
authored
Merge pull request #2948 from yajra/l10-prep
feat: Laravel 10 compatibility
2 parents ad60c4a + 2f19948 commit 18396f1

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# jQuery DataTables API for Laravel 4|5|6|7|8|9
1+
# jQuery DataTables API for Laravel 4|5|6|7|8|9|10
22

33
[![Join the chat at https://gitter.im/yajra/laravel-datatables](https://badges.gitter.im/yajra/laravel-datatables.svg)](https://gitter.im/yajra/laravel-datatables?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
44
[![Donate](https://img.shields.io/badge/donate-paypal-blue.svg)](https://www.paypal.me/yajra)
55
[![Donate](https://img.shields.io/badge/donate-patreon-blue.svg)](https://www.patreon.com/bePatron?u=4521203)
66

7-
[![Laravel 4.2|5.x|6|7|8|9](https://img.shields.io/badge/Laravel-4.2|5.x|6|7|8|9-orange.svg)](http://laravel.com)
7+
[![Laravel 4.2|5.x|6|7|8|9|10](https://img.shields.io/badge/Laravel-4.2|5.x|6|7|8|9|10-orange.svg)](http://laravel.com)
88
[![Latest Stable Version](https://img.shields.io/packagist/v/yajra/laravel-datatables-oracle.svg)](https://packagist.org/packages/yajra/laravel-datatables-oracle)
99
[![Latest Unstable Version](https://poser.pugx.org/yajra/laravel-datatables-oracle/v/unstable.svg)](https://packagist.org/packages/yajra/laravel-datatables-oracle)
1010
![Build Status](https://github.com/yajra/laravel-datatables-html/workflows/tests/badge.svg)
@@ -22,6 +22,7 @@ return datatables(User::query())->toJson();
2222
return datatables(DB::table('users'))->toJson();
2323
return datatables(User::all())->toJson();
2424
```
25+
2526
## Sponsors
2627

2728
<a href="https://editor.datatables.net?utm_source=laravel-datatables&utm_medium=github_readme&utm_campaign=logo">
@@ -68,6 +69,7 @@ return datatables(User::all())->toJson();
6869
| 7.x.x | 9.x |
6970
| 8.x.x | 9.x |
7071
| 9.x.x | 10.x |
72+
| 10.x.x | 10.x |
7173

7274
## Quick Installation
7375

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "yajra/laravel-datatables-oracle",
3-
"description": "jQuery DataTables API for Laravel 4|5|6|7|8|9",
3+
"description": "jQuery DataTables API for Laravel 4|5|6|7|8|9|10",
44
"keywords": [
55
"laravel",
66
"dataTables",
@@ -15,16 +15,16 @@
1515
],
1616
"require": {
1717
"php": "^8.0.2",
18-
"illuminate/database": "^9",
19-
"illuminate/filesystem": "^9",
20-
"illuminate/http": "^9",
21-
"illuminate/support": "^9",
22-
"illuminate/view": "^9"
18+
"illuminate/database": "^9|^10",
19+
"illuminate/filesystem": "^9|^10",
20+
"illuminate/http": "^9|^10",
21+
"illuminate/support": "^9|^10",
22+
"illuminate/view": "^9|^10"
2323
},
2424
"require-dev": {
25-
"nunomaduro/larastan": "^2.1",
26-
"orchestra/testbench": "^7.3",
27-
"yajra/laravel-datatables-html": "^9.0"
25+
"nunomaduro/larastan": "^2.4",
26+
"orchestra/testbench": "^7.21",
27+
"yajra/laravel-datatables-html": "^9.3.4|^10"
2828
},
2929
"suggest": {
3030
"yajra/laravel-datatables-buttons": "Plugin for server-side exporting of dataTables.",

0 commit comments

Comments
 (0)