Update the Datatables dependency to ^11 for Laravel 11 support
"yajra/laravel-datatables-oracle": "^11.0"
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hello, I'm stuck at the moment.
I updated from Laravel 9 to 10 without any problems. Now I wanted to update from 10 to 11 and now I get the following error.
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Conclusion: don't install laravel/framework v11.0.1 (conflict analysis result)
- Conclusion: don't install laravel/framework v11.0.2 (conflict analysis result)
- Conclusion: don't install laravel/framework v11.0.3 (conflict analysis result)
- Conclusion: don't install laravel/framework v11.0.4 (conflict analysis result)
- Conclusion: don't install laravel/framework v11.0.5 (conflict analysis result)
- Conclusion: don't install laravel/framework v11.0.6 (conflict analysis result)
- Conclusion: don't install laravel/framework v11.0.7 (conflict analysis result)
- Conclusion: don't install laravel/framework v11.0.8 (conflict analysis result)
- Conclusion: don't install laravel/framework v11.1.0 (conflict analysis result)
- Conclusion: don't install laravel/framework v11.1.1 (conflict analysis result)
- Conclusion: don't install laravel/framework v11.2.0 (conflict analysis result)
- Conclusion: don't install laravel/framework v11.3.0 (conflict analysis result)
- Conclusion: don't install laravel/framework v11.3.1 (conflict analysis result)
- yajra/laravel-datatables-oracle[v10.3.0, ..., v10.11.4] require illuminate/view ^9|^10 -> satisfiable by illuminate/view[v9.0.0, ..., v9.52.16, v10.0.0, ..., v10.48.7].
- yajra/laravel-datatables-oracle[v10.2.0, ..., v10.2.3] require illuminate/view ^9 -> satisfiable by illuminate/view[v9.0.0, ..., v9.52.16].
- Only one of these can be installed: illuminate/view[v6.0.0, ..., v6.20.44, v7.0.0, ..., v7.30.6, v8.0.0, ..., v8.83.27, v9.0.0, ..., v9.52.16, v10.0.0, ..., v10.48.7, v11.0.0, ..., v11.3.1], laravel/framework[v11.0.0, ..., v11.3.1]. laravel/framework replaces illuminate/view and thus cannot coexist with it.
- Root composer.json requires laravel/framework ^11.0 -> satisfiable by laravel/framework[v11.0.0, ..., v11.3.1].
- Root composer.json requires yajra/laravel-datatables-oracle ^10.2 -> satisfiable by yajra/laravel-datatables-oracle[v10.2.0, ..., v10.11.4].
PS C:\Users\sr\Documents\DEV\projects\apidmanagerv3>
Can anyone help me?
composer.json
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"php": "^8.0.2",
"barryvdh/laravel-dompdf": "^2.0",
"guzzlehttp/guzzle": "^7.2",
"kyslik/column-sortable": "^6.4",
"laravel/framework": "^11.0",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^2.7",
"laravel/ui": "^4.0",
"laravelcollective/html": "^6.3",
"league/flysystem-ftp": "3.0",
"league/flysystem-sftp-v3": "3.15.0",
"maatwebsite/excel": "^3.1",
"milon/barcode": "*",
"phpmailer/phpmailer": "^6.6",
"phpoffice/phpspreadsheet": "^1.25",
"phpseclib/phpseclib": "^3.0",
"spatie/laravel-permission": "^5.5",
"yajra/laravel-datatables-oracle": "^10.2"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/pint": "^1.0",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^8.1",
"phpunit/phpunit": "^10.0",
"spatie/laravel-ignition": "^2.0"
},
"autoload": {
"psr-4": {
"App\": "app/",
"Database\Factories\": "database/factories/",
"Database\Seeders\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\Foundation\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}
Please or to participate in this conversation.