Skip to content

Commit 3696aec

Browse files
authored
Merge pull request #182 from yajra/l10-prep
feat: Laravel 10 compatibility
2 parents 36fb107 + 92cefae commit 3696aec

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
matrix:
17-
php: [8.0, 8.1]
17+
php: [8.1, 8.2]
1818
stability: [prefer-stable]
1919

2020
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Laravel DataTables Html Plugin.
22

3-
[![Laravel 9.x](https://img.shields.io/badge/Laravel-9.x-orange.svg)](http://laravel.com)
3+
[![Laravel 10.x](https://img.shields.io/badge/Laravel-10.x-orange.svg)](http://laravel.com)
44
[![Latest Stable Version](https://img.shields.io/packagist/v/yajra/laravel-datatables-html.svg)](https://packagist.org/packages/yajra/laravel-datatables-html)
55
![Build Status](https://github.com/yajra/laravel-datatables-html/workflows/tests/badge.svg)
66
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/yajra/laravel-datatables-html/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/yajra/laravel-datatables-html/?branch=master)
@@ -11,7 +11,7 @@ This package is a plugin of [Laravel DataTables](https://github.com/yajra/larave
1111

1212
## Requirements
1313

14-
- [Laravel 9.x](https://github.com/laravel/framework)
14+
- [Laravel 10.x](https://github.com/laravel/framework)
1515
- [Laravel DataTables](https://github.com/yajra/laravel-datatables)
1616

1717
## Documentations
@@ -25,10 +25,11 @@ This package is a plugin of [Laravel DataTables](https://github.com/yajra/larave
2525
|:--------------|:--------|
2626
| 8.x and below | 4.x |
2727
| 9.x | 9.x |
28+
| 10.x | 10.x |
2829

2930
## Quick Installation
3031

31-
`composer require yajra/laravel-datatables-html:^9.0`
32+
`composer require yajra/laravel-datatables-html:^10`
3233

3334
#### Service Provider (Optional on Laravel 5.5+)
3435

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.0.2",
19+
"php": "^8.1",
2020
"ext-json": "*",
2121
"yajra/laravel-datatables-oracle": "^10.0",
2222
"laravelcollective/html": "^6.3.0"
2323
},
2424
"require-dev": {
25-
"nunomaduro/larastan": "^2.1",
26-
"orchestra/testbench": "^7.3"
25+
"nunomaduro/larastan": "^2.4",
26+
"orchestra/testbench": "^7.21"
2727
},
2828
"autoload": {
2929
"psr-4": {
@@ -37,7 +37,7 @@
3737
},
3838
"extra": {
3939
"branch-alias": {
40-
"dev-master": "9.0-dev"
40+
"dev-master": "10.0-dev"
4141
},
4242
"laravel": {
4343
"providers": [

0 commit comments

Comments
 (0)