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
6 changes: 4 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,14 @@ COMPOSER=composer-dev.json composer install

To update dependencies to latest:



```bash
# Production
composer require friendsofphp/php-cs-fixer laravel-zero/framework laravel/pint nunomaduro/termwind squizlabs/php_codesniffer tightenco/tlint --dev
composer require friendsofphp/php-cs-fixer laravel-zero/framework laravel/pint nunomaduro/termwind shipfastlabs/agent-detector squizlabs/php_codesniffer tightenco/tlint --dev

# Development
COMPOSER=composer-dev.json composer require friendsofphp/php-cs-fixer larastan/larastan laravel-zero/framework laravel/pint nunomaduro/termwind pestphp/pest phpstan/phpstan rector/rector spatie/laravel-ray squizlabs/php_codesniffer tightenco/tlint --dev
COMPOSER=composer-dev.json composer require friendsofphp/php-cs-fixer larastan/larastan laravel-zero/framework laravel/pint nunomaduro/termwind pestphp/pest phpstan/phpstan rector/rector shipfastlabs/agent-detector spatie/laravel-ray squizlabs/php_codesniffer tightenco/tlint --dev
```

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

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

/*
Expand Down Expand Up @@ -29,18 +34,18 @@
*/

$app->singleton(
Illuminate\Contracts\Console\Kernel::class,
App\DusterKernel::class
Kernel::class,
DusterKernel::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
Binary file modified builds/duster
Binary file not shown.
11 changes: 6 additions & 5 deletions composer-dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,19 @@
"php": "^8.2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"friendsofphp/php-cs-fixer": "^3.95",
"larastan/larastan": "^3.9",
"laravel-zero/framework": "^12.0",
"laravel/pint": "^1.27",
"laravel-zero/framework": "^12.1",
"laravel/pint": "^1.29",
"nunomaduro/termwind": "^2.4",
"pestphp/pest": "^3.8",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.3",
"rector/rector": "^2.4",
"shipfastlabs/agent-detector": "^1.1",
"spatie/invade": "^1.1",
"spatie/laravel-ray": "^1.43",
"squizlabs/php_codesniffer": "^4.0",
"tightenco/tlint": "^9.5"
"tightenco/tlint": "^9.6"
},
"autoload": {
"psr-4": {
Expand Down
Loading