Skip to content

Commit

Permalink
Merge pull request #32 from caendesilva/laravel-10
Browse files Browse the repository at this point in the history
Upgrade to Laravel 10
  • Loading branch information
caendesilva authored Feb 6, 2024
2 parents 86f50c3 + 1c7e5f6 commit a147c4c
Show file tree
Hide file tree
Showing 5 changed files with 1,751 additions and 1,460 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/laravel-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: '8.0'
php-version: '8.1'
- uses: actions/checkout@v2
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

# Laravel Blog Starter Kit

## Kickstart the development of your Laravel Blog with this Starter Kit built Laravel 9, TailwindCSS, AlpineJS, and Livewire!
## Kickstart the development of your Laravel Blog with this Starter Kit built Laravel 10, TailwindCSS, AlpineJS, and Livewire!

<img src="https://cdn.jsdelivr.net/gh/caendesilva/laravel-blogkit-static-demo@latest/storage/screenshots/devices/laptop_composite-min.png" />

## Not activly maintained
## Not actively maintained
This project is currently not receiving new features as I am focusing on [HydePHP](https://github.com/hydephp/hyde), however,
the project will continue to get security fixes as long as Laravel 9 is still supported. Open source contributions are welcome!
the project will continue to get security fixes as long as Laravel 10 is still supported. Open source contributions are welcome!

## Features
* **Highly Customizable:** Turn features on and off in the config
Expand Down Expand Up @@ -76,7 +76,7 @@ Current todo list:
The Starter Kit is a modern [TALL stack](https://tallstack.dev/) application based on [Laravel Breeze](https://github.com/laravel/breeze) (MIT) using:
- [TailwindCSS 3](https://tailwindcss.com/) (MIT)
- [AlpineJS 3](https://alpinejs.dev/) (MIT)
- [Laravel 9](https://laravel.com/) (MIT)
- [Laravel 10](https://laravel.com/) (MIT)
- [Livewire 2](https://laravel-livewire.com/) (MIT)

Featured images on blog posts used by the seeder come from [Unsplash](https://unsplash.com/) via [picsum.photos](https://picsum.photos/) (Image License)[https://unsplash.com/license]
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Kernel extends HttpKernel
protected $middleware = [
// \App\Http\Middleware\TrustHosts::class,
\App\Http\Middleware\TrustProxies::class,
\Fruitcake\Cors\HandleCors::class,
\Illuminate\Http\Middleware\HandleCors::class,
\App\Http\Middleware\PreventRequestsDuringMaintenance::class,
\Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
\App\Http\Middleware\TrimStrings::class,
Expand Down
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@
"license": "MIT",
"require": {
"php": "^8.0.2",
"fruitcake/laravel-cors": "^2.0.5",
"graham-campbell/markdown": "*",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^9.0",
"laravel/sanctum": "^2.14",
"laravel/framework": "^10.0",
"laravel/sanctum": "^3.2",
"laravel/tinker": "^2.7",
"livewire/livewire": "^2.10",
"spatie/yaml-front-matter": "^2.0",
Expand All @@ -25,7 +24,7 @@
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ignition": "^1.0"
"spatie/laravel-ignition": "^2.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit a147c4c

Please sign in to comment.