Remove mcamara/laravel-localization it doesnt work with laravel 11 (yet)
All checks were successful
Create Docker Image / Test Application (x86_64) (push) Successful in 30s
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m20s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 3m26s
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s
All checks were successful
Create Docker Image / Test Application (x86_64) (push) Successful in 30s
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m20s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 3m26s
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s
This commit is contained in:
parent
d838e07072
commit
9d97bb0f96
@ -11,8 +11,7 @@
|
||||
"directorytree/ldaprecord-laravel": "^3.0",
|
||||
"laravel/framework": "^11.9",
|
||||
"laravel/sanctum": "^4.0",
|
||||
"laravel/ui": "^4.5",
|
||||
"mcamara/laravel-localization": "^2.0"
|
||||
"laravel/ui": "^4.5"
|
||||
},
|
||||
"require-dev": {
|
||||
"barryvdh/laravel-debugbar": "^3.6",
|
||||
|
78
composer.lock
generated
78
composer.lock
generated
@ -4,7 +4,7 @@
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "02daf17113d0dcc1f5386ed7ce10f97c",
|
||||
"content-hash": "c513b2b51a8ad7dfe055c7861c9d6b2a",
|
||||
"packages": [
|
||||
{
|
||||
"name": "brick/math",
|
||||
@ -2209,82 +2209,6 @@
|
||||
],
|
||||
"time": "2024-12-08T08:18:47+00:00"
|
||||
},
|
||||
{
|
||||
"name": "mcamara/laravel-localization",
|
||||
"version": "v2.2.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mcamara/laravel-localization.git",
|
||||
"reference": "a19ddcc634dff6b06ae35ecb7f06b2a0444e9807"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/mcamara/laravel-localization/zipball/a19ddcc634dff6b06ae35ecb7f06b2a0444e9807",
|
||||
"reference": "a19ddcc634dff6b06ae35ecb7f06b2a0444e9807",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"laravel/framework": "^10.0|^11.0",
|
||||
"php": "^8.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"orchestra/testbench-browser-kit": "^8.5|^9.0",
|
||||
"phpunit/phpunit": "^10.1"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-intl": "*"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"laravel": {
|
||||
"aliases": {
|
||||
"LaravelLocalization": "Mcamara\\LaravelLocalization\\Facades\\LaravelLocalization"
|
||||
},
|
||||
"providers": [
|
||||
"Mcamara\\LaravelLocalization\\LaravelLocalizationServiceProvider"
|
||||
]
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-0": {
|
||||
"Mcamara\\LaravelLocalization": "src/"
|
||||
},
|
||||
"classmap": []
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Marc Cámara",
|
||||
"email": "mcamara88@gmail.com",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"description": "Easy localization for Laravel",
|
||||
"homepage": "https://github.com/mcamara/laravel-localization",
|
||||
"keywords": [
|
||||
"laravel",
|
||||
"localization",
|
||||
"php"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/mcamara/laravel-localization/issues",
|
||||
"source": "https://github.com/mcamara/laravel-localization/tree/v2.2.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/iwasherefirst2",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/mcamara",
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2024-11-27T21:06:34+00:00"
|
||||
},
|
||||
{
|
||||
"name": "monolog/monolog",
|
||||
"version": "3.8.1",
|
||||
|
@ -35,17 +35,17 @@
|
||||
<li class="app-sidebar__heading">{{ $server ?? __('Server Name') }}</li>
|
||||
<li>
|
||||
<div class="font-icon-wrapper float-start me-1 server-icon">
|
||||
<a class="p-0 m-0" href="{{ LaravelLocalization::localizeUrl('info') }}" onclick="return false;" style="display: contents;"><i class="fas fa-fw fa-info"></i></a>
|
||||
<a class="p-0 m-0" href="{{ url('info') }}" onclick="return false;" style="display: contents;"><i class="fas fa-fw fa-info"></i></a>
|
||||
</div>
|
||||
<div class="font-icon-wrapper float-start ms-1 me-1 server-icon">
|
||||
<a class="p-0 m-0" href="{{ LaravelLocalization::localizeUrl('schema') }}" onclick="return false;" style="display: contents;"><i class="fas fa-fw fa-fingerprint"></i></a>
|
||||
<a class="p-0 m-0" href="{{ url('schema') }}" onclick="return false;" style="display: contents;"><i class="fas fa-fw fa-fingerprint"></i></a>
|
||||
</div>
|
||||
<div class="font-icon-wrapper float-start ms-1 me-1 server-icon">
|
||||
<a class="p-0 m-0" href="{{ LaravelLocalization::localizeUrl('import') }}" onclick="return false;" style="display: contents;"><i class="fas fa-fw fa-upload"></i></a>
|
||||
<a class="p-0 m-0" href="{{ url('import') }}" onclick="return false;" style="display: contents;"><i class="fas fa-fw fa-upload"></i></a>
|
||||
</div>
|
||||
@env(['local'])
|
||||
<div class="font-icon-wrapper float-end ms-1 server-icon">
|
||||
<a class="p-0 m-0" href="{{ LaravelLocalization::localizeUrl('debug') }}" onclick="return false;" style="display: contents;"><i class="fas fa-fw fa-toolbox"></i></a>
|
||||
<a class="p-0 m-0" href="{{ url('debug') }}" onclick="return false;" style="display: contents;"><i class="fas fa-fw fa-toolbox"></i></a>
|
||||
</div>
|
||||
@endenv
|
||||
<div class="clearfix"></div>
|
||||
|
@ -16,23 +16,21 @@ use App\Http\Controllers\Auth\LoginController;
|
||||
|
|
||||
*/
|
||||
|
||||
Route::group(['prefix' => LaravelLocalization::setLocale()], function() {
|
||||
Auth::routes([
|
||||
Auth::routes([
|
||||
'login' => TRUE,
|
||||
'logout' => TRUE,
|
||||
'reset' => FALSE,
|
||||
'confirm' => FALSE,
|
||||
'verify' => FALSE,
|
||||
'register' => FALSE,
|
||||
]);
|
||||
]);
|
||||
|
||||
Route::get('/',[HomeController::class,'home']);
|
||||
Route::get('info',[HomeController::class,'info']);
|
||||
Route::post('dn',[HomeController::class,'dn_frame']);
|
||||
Route::get('debug',[HomeController::class,'debug']);
|
||||
Route::get('import',[HomeController::class,'import_frame']);
|
||||
Route::get('schema',[HomeController::class,'schema_frame']);
|
||||
});
|
||||
Route::get('/',[HomeController::class,'home']);
|
||||
Route::get('info',[HomeController::class,'info']);
|
||||
Route::post('dn',[HomeController::class,'dn_frame']);
|
||||
Route::get('debug',[HomeController::class,'debug']);
|
||||
Route::get('import',[HomeController::class,'import_frame']);
|
||||
Route::get('schema',[HomeController::class,'schema_frame']);
|
||||
|
||||
Route::get('logout',[LoginController::class,'logout']);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user