Skip to content
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/phar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Setup PHP, with Composer and Extensions
uses: shivammathur/setup-php@v2
with:
php-version: "8.4"
php-version: "8.5"
tools: composer:v2
coverage: none

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup PHP, with Composer and Extensions
uses: shivammathur/setup-php@v2
with:
php-version: "8.4"
php-version: "8.5"
tools: composer:v2
coverage: none

Expand Down
16 changes: 11 additions & 5 deletions bootstrap/app.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

use App\Exceptions\HandleExceptions;
use App\Kernel;
use Illuminate\Contracts\Debug\ExceptionHandler;
use Illuminate\Foundation\Exceptions\Handler;
use LaravelZero\Framework\Application;

/*
|--------------------------------------------------------------------------
| Create The Application
Expand All @@ -11,7 +17,7 @@
|
*/

$app = new LaravelZero\Framework\Application(
$app = new Application(
dirname(__DIR__)
);

Expand All @@ -28,17 +34,17 @@

$app->singleton(
Illuminate\Contracts\Console\Kernel::class,
App\Kernel::class
Kernel::class
);

$app->singleton(
Illuminate\Contracts\Debug\ExceptionHandler::class,
Illuminate\Foundation\Exceptions\Handler::class
ExceptionHandler::class,
Handler::class
);

$app->singleton(
Illuminate\Foundation\Bootstrap\HandleExceptions::class,
App\Exceptions\HandleExceptions::class
HandleExceptions::class
);

/*
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
}
],
"require": {
"php": "^8.2",
"php": "^8.3",
"ext-json": "*"
},
"require-dev": {
"illuminate/view": "^11.45",
"laravel-zero/framework": "^11.45",
"laravel/pint": "^1.24",
"illuminate/view": "^12.55",
"laravel-zero/framework": "^12.1",
"laravel/pint": "^1.29",
"mockery/mockery": "^1.6",
"nunomaduro/termwind": "^2.3",
"pestphp/pest": "^3.8"
"nunomaduro/termwind": "^2.4",
"pestphp/pest": "^4.4"
},
"autoload": {
"psr-4": {
Expand Down
Loading
Loading