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
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

use function Laravel\Prompts\note;

final class RunScriptCommmand
final class RunScriptCommand
{
public function handle(string $command, int $timeout = 0): void
{
Expand Down
4 changes: 2 additions & 2 deletions app/Commands/RunCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace App\Commands;

use App\Actions\RunScriptCommmand;
use App\Actions\RunScriptCommand;
use App\Support\Configuration;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Support\Str;
Expand Down Expand Up @@ -36,7 +36,7 @@ final class RunCommand extends Command
/**
* Execute the console command.
*/
public function handle(Terminal $terminal, Configuration $configuration, RunScriptCommmand $runCommandAction): void
public function handle(Terminal $terminal, Configuration $configuration, RunScriptCommand $runCommandAction): void
{
/** @var string[] $names */
$names = str($this->argument('names'))->explode(',')->toArray();
Expand Down
2 changes: 1 addition & 1 deletion app/Support/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,6 @@ public function scripts(string ...$keys): array
/** @var ScriptShape[] $scripts */
$scripts = Arr::where($this->scripts, fn (array $script): bool => in_array($script['name'], $keys));

return $scripts;
return array_reverse($scripts);
}
}
Binary file modified builds/devpulse
Binary file not shown.
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "laravel-zero/laravel-zero",
"description": "The Laravel Zero Framework.",
"name": "softpulselab/devpulse-cli",
"description": "DevPulse CLI - An open-source command-line tool that simplifies and unifies developer workflows.",
"keywords": [
"framework",
"laravel",
"laravel zero",
"console",
"cli"
"devpulse",
"cli",
"opensource",
"productivity",
"tool"
],
"homepage": "https://laravel-zero.com",
"type": "project",
Expand All @@ -26,7 +26,7 @@
},
"require-dev": {
"larastan/larastan": "^3.0",
"laravel-zero/framework": "^11.0.2",
"laravel-zero/framework": "^12.0",
"laravel/pint": "^1.18",
"mockery/mockery": "^1.6.12",
"pestphp/pest": "^3.5.1",
Expand Down
Loading
Loading