Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Force update to Laravel 10 #43

Merged
merged 8 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.1
extensions: json, dom, curl, libxml, mbstring
coverage: none

Expand Down
5 changes: 4 additions & 1 deletion app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ protected function schedule(Schedule $schedule): void

protected function commands(): void
{
$this->load(__DIR__.'/Commands');
$this->load([__DIR__ . '/Commands']);
// $this->load([__DIR__.'/Commands',__DIR__.'/packages/laravel-subscriptions/src/Console/Commands']);


}
}
4 changes: 2 additions & 2 deletions app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ public function bootFilament(): void
);
});

Filament::registerRenderHook(
/*Filament::renderHook(
'body.start',
fn (): string => Blade::render('@livewire(\'livewire-ui-modal\')'),
);
);*/
}
}
14 changes: 14 additions & 0 deletions app/View/Components/vendor/feed/FeedLinks.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

namespace Spatie\Feed\Components;

use Illuminate\View\Component;
use Illuminate\View\View;

class FeedLinks extends Component
{
public function render(): View
{
return view('feed::links');
}
}
98 changes: 50 additions & 48 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,67 +5,71 @@
"keywords": ["laravel", "morocco", "community"],
"license": "MIT",
"require": {
"php": "^8.2",
"php": "^8.1|^8.2",
"ext-fileinfo": "*",
"ext-json": "*",
"archtechx/laravel-seo": "^0.5.1",
"archtechx/laravel-seo": "^0.9.0",
"arrilot/laravel-widgets": "^3.13.2",
"bensampo/laravel-enum": "^6.3.3",
"blade-ui-kit/blade-heroicons": "^1.4",
"blade-ui-kit/blade-ui-kit": "^0.3.4",
"cyrildewit/eloquent-viewable": "^6.1",
"doctrine/dbal": "^3.6.4",
"bensampo/laravel-enum": "^6.6",
"blade-ui-kit/blade-heroicons": "^1.2",
"blade-ui-kit/blade-icons": "^1.5",
"blade-ui-kit/blade-ui-kit": "^0.4.0",
"cyrildewit/eloquent-viewable": "^7.0",
"doctrine/dbal": "^3.7",
"filament/filament": "^2.0",
"filament/notifications": "^2.17.49",
"francescomalatesta/laravel-feature": "^3.0",
"graham-campbell/markdown": "^14.0",
"guzzlehttp/guzzle": "^7.7.0",
"filament/notifications": "^2.0",
"graham-campbell/markdown": "^15.0",
"guzzlehttp/guzzle": "^7.8",
"jenssegers/agent": "^2.6.4",
"laravel-notification-channels/telegram": "^2.1",
"laravel-notification-channels/twitter": "^6.2",
"laravel/fortify": "^1.17.4",
"laravel/framework": "^9.52.10",
"laravel/sanctum": "^3.2.5",
"laravel/slack-notification-channel": "^2.5",
"laravel/socialite": "^5.6.3",
"laravel-notification-channels/telegram": "^4.0",
"laravel-notification-channels/twitter": "^8.0",
"laravel/fortify": "^1.18",
"laravel/framework": "^10.28",
"laravel/sanctum": "^3.3",
"laravel/slack-notification-channel": "^3.0",
"laravel/socialite": "^5.9",
"laravel/tinker": "^2.8.1",
"livewire/livewire": "^2.12.3",
"lorisleiva/laravel-actions": "^2.6",
"livewire/livewire": "^2.12.5",
"lorisleiva/laravel-actions": "^2.7",
"nnjeim/world": "^1.1.27",
"notchpay/notchpay-php": "^1.3",
"notchpay/notchpay-php": "^1.6",
"qcod/laravel-gamify": "^1.0.7",
"ramsey/uuid": "^4.7.4",
"rinvex/laravel-subscriptions": "^6.1",
"sentry/sentry-laravel": "^2.14.2",
"sentry/sentry-laravel": "^3.8.2",
"socialiteproviders/twitter": "^4.1.2",
"spatie/laravel-feed": "^4.2.1",
"spatie/eloquent-sortable": "^4.0",
"spatie/laravel-feed": "^4.3",
"spatie/laravel-google-fonts": "^1.2.3",
"spatie/laravel-medialibrary": "^10.10.0",
"spatie/laravel-permission": "^5.10.1",
"spatie/laravel-medialibrary": "^10.13",
"spatie/laravel-permission": "^5.11",
"spatie/laravel-sitemap": "^6.3.1",
"stevebauman/location": "^6.6.2",
"symfony/http-client": "^6.3.1",
"spatie/laravel-sluggable": "^3.4.0",
"spatie/laravel-translatable": "^6.5",
"stevebauman/location": "^7.0.1",
"symfony/http-client": "^6.3.5",
"symfony/mailgun-mailer": "^6.3",
"torchlight/torchlight-commonmark": "^0.5.5",
"wire-elements/modal": "^1.0.8",
"wire-elements/spotlight": "^1.0.7",
"wire-elements/spotlight": "^1.0",
"yarri/link-finder": "^2.7.10"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.8.1",
"barryvdh/laravel-debugbar": "^3.9.2",
"barryvdh/laravel-ide-helper": "^2.13",
"brianium/paratest": "^6.10",
"brianium/paratest": "^7.3",
"fakerphp/faker": "^1.23.0",
"laravel/pint": "^1.10.3",
"laravel/sail": "^1.23.0",
"mockery/mockery": "^1.6.2",
"nunomaduro/collision": "^6.4",
"laravel/pint": "^1.13",
"laravel/sail": "^1.25",
"mockery/mockery": "^1.6.6",
"nunomaduro/collision": "^7.0",
"nunomaduro/larastan": "^2.6.3",
"pestphp/pest-plugin-laravel": "^1.4.0",
"pestphp/pest-plugin-livewire": "^1.0",
"phpunit/phpunit": "^9.6.9",
"spatie/laravel-ignition": "^1.6.4",
"spatie/test-time": "^1.3.2"
"pestphp/pest-plugin-livewire": "*",
"spatie/laravel-ignition": "^2.3",
"spatie/test-time": "^1.3.2",
"pestphp/pest": "^2.6.2",
"pestphp/pest-plugin-drift": "^2.5",
"pestphp/pest-plugin-laravel": "^2.0"

},
"autoload": {
"files": [
Expand All @@ -74,7 +78,11 @@
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
"Database\\Seeders\\": "database/seeders/",
"Watson\\Validating\\": "packages/tmp-watson-validating/src",
"Rinvex\\Subscriptions\\": "packages/laravel-subscriptions/src",
"Rinvex\\Support\\": "packages/laravel-support/src",
"LaravelFeature\\": "packages/laravel-feature/src"
}
},
"autoload-dev": {
Expand Down Expand Up @@ -134,11 +142,5 @@
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/laravel-shift/uniquewith-validator.git"
}
]
"minimum-stability": "dev"
}
Loading
Loading