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

Update dependencies #159

Merged
merged 1 commit into from
Sep 27, 2024
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 app/Commands/GitHubActionsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Support\Str;
use LaravelZero\Framework\Commands\Command;

use function Termwind\{render};
use function Termwind\render;

class GitHubActionsCommand extends Command
{
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/HuskyHooksCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use RuntimeException;
use Symfony\Component\Process\Process;

use function Termwind\{render};
use function Termwind\render;

class HuskyHooksCommand extends Command
{
Expand Down
2 changes: 1 addition & 1 deletion app/Support/Tool.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\Support;

use function Termwind\{render};
use function Termwind\render;

abstract class Tool
{
Expand Down
Binary file modified builds/duster
Binary file not shown.
11 changes: 5 additions & 6 deletions composer-dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"php": "^8.2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"friendsofphp/php-cs-fixer": "^3.64",
"larastan/larastan": "^2.7",
"laravel-zero/framework": "^11.0",
"laravel/pint": "^1.16",
"laravel/pint": "^1.18",
"nunomaduro/termwind": "^2.0",
"pestphp/pest": "^2.0",
"phpstan/phpstan": "^1.11",
Expand All @@ -18,9 +18,7 @@
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
"App\\": "app/"
}
},
"autoload-dev": {
Expand All @@ -29,7 +27,8 @@
},
"files": [
"./vendor/squizlabs/php_codesniffer/autoload.php"
]
],
"exclude-from-classmap": ["/tests/Fixtures/"]
},
"scripts": {
"lint": "./duster lint",
Expand Down
Loading