cancellazione modifiche dopo step before oauth

This commit is contained in:
2026-06-16 21:43:24 +02:00
parent 6001c2e3b8
commit c333bbce4e
5770 changed files with 677814 additions and 16 deletions
+34
View File
@@ -0,0 +1,34 @@
<?php
declare(strict_types=1);
namespace Laravel\AgentDetector;
enum KnownAgent: string
{
case Cursor = 'cursor';
case Claude = 'claude';
case Cowork = 'cowork';
case Devin = 'devin';
case Replit = 'replit';
case Gemini = 'gemini';
case Codex = 'codex';
case V0 = 'v0';
case AugmentCli = 'augment-cli';
case Opencode = 'opencode';
case Amp = 'amp';
case Copilot = 'copilot';
case Antigravity = 'antigravity';
case Pi = 'pi';
case KiroCli = 'kiro-cli';
public function label(): string
{
return match ($this) {
self::AugmentCli => 'Augment CLI',
self::KiroCli => 'Kiro CLI',
self::V0 => 'v0',
default => ucfirst($this->value),
};
}
}