repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/config/auth.php
api/config/auth.php
<?php return [ /* |-------------------------------------------------------------------------- | Authentication Defaults |-------------------------------------------------------------------------- | | This option controls the default authentication "guard" and password | reset options for y...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/seeds/UserSeeder.php
api/database/seeds/UserSeeder.php
<?php use Illuminate\Database\Seeder; use App\Models\User\User; class UserSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { User::create([ 'client_id' => '71d4f8ea-1138-11e8-a472-002163944a0x', 'name' => 'T...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/seeds/OauthClientSeeder.php
api/database/seeds/OauthClientSeeder.php
<?php use Illuminate\Database\Seeder; use Illuminate\Support\Facades\DB; class OauthClientSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { DB::table('oauth_clients')->insert([ 'id' => '71d4f8ea-1138-11e8-a472-00216394...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/seeds/DatabaseSeeder.php
api/database/seeds/DatabaseSeeder.php
<?php use Illuminate\Database\Seeder; class DatabaseSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { $this->call(OauthClientSeeder::class); $this->call(UserSeeder::class); } }
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/factories/UserFactory.php
api/database/factories/UserFactory.php
<?php use Faker\Generator as Faker; /* |-------------------------------------------------------------------------- | Model Factories |-------------------------------------------------------------------------- | | This directory should contain each of the model factory definitions for | your application. Factories pro...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/migrations/2016_06_01_000004_create_oauth_clients_table.php
api/database/migrations/2016_06_01_000004_create_oauth_clients_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateOauthClientsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('oauth_clie...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/migrations/2018_04_04_011623_create_email_verifications_table.php
api/database/migrations/2018_04_04_011623_create_email_verifications_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateEmailVerificationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('emai...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/migrations/2014_10_12_000000_create_users_table.php
api/database/migrations/2014_10_12_000000_create_users_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('users', function ...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/migrations/2014_10_12_100000_create_password_resets_table.php
api/database/migrations/2014_10_12_100000_create_password_resets_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreatePasswordResetsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('password...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/migrations/2018_04_04_154423_create_notifications_table.php
api/database/migrations/2018_04_04_154423_create_notifications_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateNotificationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('notificat...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/migrations/2018_04_04_145622_create_permission_tables.php
api/database/migrations/2018_04_04_145622_create_permission_tables.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreatePermissionTables extends Migration { /** * Run the migrations. * * @return void */ public function up() { $tableNames = config('permi...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/migrations/2018_04_04_142417_create_social_accounts_table.php
api/database/migrations/2018_04_04_142417_create_social_accounts_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateSocialAccountsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('social_a...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/migrations/2016_06_01_000005_create_oauth_personal_access_clients_table.php
api/database/migrations/2016_06_01_000005_create_oauth_personal_access_clients_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateOauthPersonalAccessClientsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::crea...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/migrations/2016_06_01_000002_create_oauth_access_tokens_table.php
api/database/migrations/2016_06_01_000002_create_oauth_access_tokens_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateOauthAccessTokensTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('oauth...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/migrations/2016_06_01_000003_create_oauth_refresh_tokens_table.php
api/database/migrations/2016_06_01_000003_create_oauth_refresh_tokens_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateOauthRefreshTokensTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('oaut...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/migrations/2018_04_04_153230_create_messaging_tokens_table.php
api/database/migrations/2018_04_04_153230_create_messaging_tokens_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateMessagingTokensTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('messagi...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/database/migrations/2016_06_01_000001_create_oauth_auth_codes_table.php
api/database/migrations/2016_06_01_000001_create_oauth_auth_codes_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateOauthAuthCodesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('oauth_au...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/resources/lang/en/passwords.php
api/resources/lang/en/passwords.php
<?php return [ /* |-------------------------------------------------------------------------- | Password Reset Language Lines |-------------------------------------------------------------------------- | | The following language lines are the default lines which match reasons | that are gi...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/resources/lang/en/pagination.php
api/resources/lang/en/pagination.php
<?php return [ /* |-------------------------------------------------------------------------- | Pagination Language Lines |-------------------------------------------------------------------------- | | The following language lines are used by the paginator library to build | the simple pag...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/resources/lang/en/validation.php
api/resources/lang/en/validation.php
<?php return [ /* |-------------------------------------------------------------------------- | Validation Language Lines |-------------------------------------------------------------------------- | | The following language lines contain the default error messages used by | the validator ...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/resources/lang/en/auth.php
api/resources/lang/en/auth.php
<?php return [ /* |-------------------------------------------------------------------------- | Authentication Language Lines |-------------------------------------------------------------------------- | | The following language lines are used during authentication for various | messages t...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/resources/views/welcome.blade.php
api/resources/views/welcome.blade.php
<!doctype html> <html lang="{{ app()->getLocale() }}"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Laravel</title> <!-- Fonts --> <link href="https://...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/resources/views/vendor/graphql/graphiql.php
api/resources/views/vendor/graphql/graphiql.php
<!DOCTYPE html> <html> <head> <style> html, body { height: 100%; margin: 0; padding: 0; width: 100%; overflow: hidden; } #graphiql { height: 100vh; } </styl...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/resources/views/mails/email-verification.blade.php
api/resources/views/mails/email-verification.blade.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <h1>Email Verification</h1> {{config('client.registrationUrl').'/'.$c...
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/resources/views/mails/forgot-password-plain.blade.php
api/resources/views/mails/forgot-password-plain.blade.php
Reset your password {{config('client.resetPasswordUrl').'/'.$token}}
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/resources/views/mails/email-verification-plain.blade.php
api/resources/views/mails/email-verification-plain.blade.php
Email Verification {{config('client.registrationUrl').'/'.$code}}
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
laqul/laqul
https://github.com/laqul/laqul/blob/da37670fa22c693a566e97e2b57c7d7399e9daac/api/resources/views/mails/forgot-password.blade.php
api/resources/views/mails/forgot-password.blade.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <h1>Reset your password</h1> {{config('client.resetPasswordUrl').'/'....
php
MIT
da37670fa22c693a566e97e2b57c7d7399e9daac
2026-01-05T05:16:00.151695Z
false
tuupola/cors-middleware
https://github.com/tuupola/cors-middleware/blob/e391075e2635f29bed258926f9b588d1418c4ee6/rector.php
rector.php
<?php declare(strict_types=1); use Rector\CodeQuality\Rector\If_\SimplifyIfElseToTernaryRector; use Rector\CodingStyle\Rector\Closure\StaticClosureRector; use Rector\Config\RectorConfig; use Rector\Set\ValueObject\LevelSetList; use Rector\Set\ValueObject\SetList; use Rector\PHPUnit\Set\PHPUnitSetList; use Rector\PHPU...
php
MIT
e391075e2635f29bed258926f9b588d1418c4ee6
2026-01-05T05:16:15.421418Z
false
tuupola/cors-middleware
https://github.com/tuupola/cors-middleware/blob/e391075e2635f29bed258926f9b588d1418c4ee6/ecs.php
ecs.php
<?php declare(strict_types=1); use PhpCsFixer\Fixer\ArrayNotation\ArraySyntaxFixer; use Symplify\EasyCodingStandard\Config\ECSConfig; use Symplify\EasyCodingStandard\ValueObject\Set\SetList; use PhpCsFixer\Fixer\Phpdoc\PhpdocLineSpanFixer; use PhpCsFixer\Fixer\Phpdoc\NoSuperfluousPhpdocTagsFixer; return static funct...
php
MIT
e391075e2635f29bed258926f9b588d1418c4ee6
2026-01-05T05:16:15.421418Z
false
tuupola/cors-middleware
https://github.com/tuupola/cors-middleware/blob/e391075e2635f29bed258926f9b588d1418c4ee6/src/Settings.php
src/Settings.php
<?php /* Copyright (c) 2022 Pavlo Mikhailidi Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, di...
php
MIT
e391075e2635f29bed258926f9b588d1418c4ee6
2026-01-05T05:16:15.421418Z
false
tuupola/cors-middleware
https://github.com/tuupola/cors-middleware/blob/e391075e2635f29bed258926f9b588d1418c4ee6/src/CorsMiddleware.php
src/CorsMiddleware.php
<?php /* Copyright (c) 2016-2022 Mika Tuupola Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, d...
php
MIT
e391075e2635f29bed258926f9b588d1418c4ee6
2026-01-05T05:16:15.421418Z
false
tuupola/cors-middleware
https://github.com/tuupola/cors-middleware/blob/e391075e2635f29bed258926f9b588d1418c4ee6/tests/CorsMiddlewareTest.php
tests/CorsMiddlewareTest.php
<?php /* Copyright (c) 2016-2022 Mika Tuupola Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, d...
php
MIT
e391075e2635f29bed258926f9b588d1418c4ee6
2026-01-05T05:16:15.421418Z
false
tuupola/cors-middleware
https://github.com/tuupola/cors-middleware/blob/e391075e2635f29bed258926f9b588d1418c4ee6/tests/TestMethodsHandler.php
tests/TestMethodsHandler.php
<?php /* Copyright (c) 2016-2022 Mika Tuupola Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, d...
php
MIT
e391075e2635f29bed258926f9b588d1418c4ee6
2026-01-05T05:16:15.421418Z
false
tuupola/cors-middleware
https://github.com/tuupola/cors-middleware/blob/e391075e2635f29bed258926f9b588d1418c4ee6/tests/TestErrorHandler.php
tests/TestErrorHandler.php
<?php /* Copyright (c) 2016-2022 Mika Tuupola Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, d...
php
MIT
e391075e2635f29bed258926f9b588d1418c4ee6
2026-01-05T05:16:15.421418Z
false
tuupola/cors-middleware
https://github.com/tuupola/cors-middleware/blob/e391075e2635f29bed258926f9b588d1418c4ee6/tests/SettingsTest.php
tests/SettingsTest.php
<?php /* Copyright (c) 2022 Pavlo Mikhailidi Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, di...
php
MIT
e391075e2635f29bed258926f9b588d1418c4ee6
2026-01-05T05:16:15.421418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/LaravelConsoleWizardServiceProvider.php
src/LaravelConsoleWizardServiceProvider.php
<?php namespace Shomisha\LaravelConsoleWizard; use Illuminate\Support\ServiceProvider; use Shomisha\LaravelConsoleWizard\Command\Generators\GenerateWizardWizard; class LaravelConsoleWizardServiceProvider extends ServiceProvider { public function register() { $this->commands([ GenerateWiza...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Templates/StepTemplate.php
src/Templates/StepTemplate.php
<?php namespace Shomisha\LaravelConsoleWizard\Templates; use Shomisha\LaravelConsoleWizard\DataTransfer\StepSpecification; use Shomisha\Stubless\ImperativeCode\InstantiateBlock; use Shomisha\Stubless\Utilities\Importable; use Shomisha\Stubless\Values\Value; class StepTemplate extends InstantiateBlock { public fu...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Templates/WizardTemplate.php
src/Templates/WizardTemplate.php
<?php namespace Shomisha\LaravelConsoleWizard\Templates; use Illuminate\Support\Str; use Shomisha\LaravelConsoleWizard\Command\Wizard; use Shomisha\LaravelConsoleWizard\Contracts\Step; use Shomisha\LaravelConsoleWizard\DataTransfer\StepSpecification; use Shomisha\LaravelConsoleWizard\DataTransfer\WizardSpecification;...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Contracts/Step.php
src/Contracts/Step.php
<?php namespace Shomisha\LaravelConsoleWizard\Contracts; interface Step { public function take(Wizard $wizard); }
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Contracts/ValidatesWizard.php
src/Contracts/ValidatesWizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Contracts; interface ValidatesWizard { public function getRules(): array; public function onWizardInvalid(array $errors); }
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Contracts/Wizard.php
src/Contracts/Wizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Contracts; interface Wizard extends Step { }
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Contracts/RepeatsInvalidSteps.php
src/Contracts/RepeatsInvalidSteps.php
<?php namespace Shomisha\LaravelConsoleWizard\Contracts; interface RepeatsInvalidSteps extends ValidatesWizardSteps { }
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Contracts/ValidatesWizardSteps.php
src/Contracts/ValidatesWizardSteps.php
<?php namespace Shomisha\LaravelConsoleWizard\Contracts; interface ValidatesWizardSteps { public function getRules(): array; }
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Exception/InvalidStepException.php
src/Exception/InvalidStepException.php
<?php namespace Shomisha\LaravelConsoleWizard\Exception; class InvalidStepException extends \Exception { }
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Exception/InvalidClassSpecificationException.php
src/Exception/InvalidClassSpecificationException.php
<?php namespace Shomisha\LaravelConsoleWizard\Exception; class InvalidClassSpecificationException extends \Exception { public static function missingName(): self { return self::missingParameter('name'); } public static function missingSignature(): self { return self::missingParame...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Exception/SubwizardException.php
src/Exception/SubwizardException.php
<?php namespace Shomisha\LaravelConsoleWizard\Exception; class SubwizardException extends \Exception { public static function completedMethodShouldNotBeCalled(): self { return new self("Subwizard::completed() method should not be called."); } }
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Exception/AbortWizardException.php
src/Exception/AbortWizardException.php
<?php namespace Shomisha\LaravelConsoleWizard\Exception; use Throwable; class AbortWizardException extends \Exception { protected $message = "Wizard abortion initiated by client."; private ?string $userMessage = null; public function __construct(string $userMessage = null, $code = 0, Throwable $previou...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Exception/InvalidStepSpecificationException.php
src/Exception/InvalidStepSpecificationException.php
<?php namespace Shomisha\LaravelConsoleWizard\Exception; class InvalidStepSpecificationException extends \Exception { public static function missingName(): self { return self::missingParameter('name'); } public static function missingType(): self { return self::missingParameter('t...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/DataTransfer/Specification.php
src/DataTransfer/Specification.php
<?php namespace Shomisha\LaravelConsoleWizard\DataTransfer; use Illuminate\Support\Arr; abstract class Specification { private array $specification; public function __construct(array $specification) { $this->assertSpecificationIsValid($specification); $this->specification = $specificati...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/DataTransfer/StepSpecification.php
src/DataTransfer/StepSpecification.php
<?php namespace Shomisha\LaravelConsoleWizard\DataTransfer; use Shomisha\LaravelConsoleWizard\Exception\InvalidStepSpecificationException; use Shomisha\LaravelConsoleWizard\Steps\ChoiceStep; use Shomisha\LaravelConsoleWizard\Steps\MultipleChoiceStep; use Shomisha\LaravelConsoleWizard\Steps\UniqueMultipleChoiceStep; ...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/DataTransfer/WizardSpecification.php
src/DataTransfer/WizardSpecification.php
<?php namespace Shomisha\LaravelConsoleWizard\DataTransfer; use Shomisha\LaravelConsoleWizard\Command\GeneratorWizard; use Shomisha\LaravelConsoleWizard\Exception\InvalidClassSpecificationException; class WizardSpecification extends Specification { const KEY_NAMESPACE = 'namespace'; const KEY_CLASS_NAME = Ge...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Concerns/WizardCore.php
src/Concerns/WizardCore.php
<?php namespace Shomisha\LaravelConsoleWizard\Concerns; use Illuminate\Support\Collection; use Illuminate\Support\Facades\Validator; use Illuminate\Support\Str; use Illuminate\Validation\ValidationException; use Shomisha\LaravelConsoleWizard\Contracts\RepeatsInvalidSteps; use Shomisha\LaravelConsoleWizard\Contracts\S...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Steps/UniqueMultipleChoiceStep.php
src/Steps/UniqueMultipleChoiceStep.php
<?php namespace Shomisha\LaravelConsoleWizard\Steps; use Shomisha\LaravelConsoleWizard\Contracts\Wizard; class UniqueMultipleChoiceStep extends BaseMultipleAnswerStep { private array $choices; public function __construct(string $text, array $choices, array $options = []) { parent::__construct($t...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Steps/BaseStep.php
src/Steps/BaseStep.php
<?php namespace Shomisha\LaravelConsoleWizard\Steps; use Shomisha\LaravelConsoleWizard\Contracts\Step; abstract class BaseStep implements Step { protected string $text; public function __construct(string $text) { $this->text = $text; } }
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Steps/ConfirmStep.php
src/Steps/ConfirmStep.php
<?php namespace Shomisha\LaravelConsoleWizard\Steps; use Shomisha\LaravelConsoleWizard\Contracts\Wizard; class ConfirmStep extends BaseStep { private $defaultAnswer; public function __construct(string $text, $defaultAnswer = false) { parent::__construct($text); $this->defaultAnswer = $d...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Steps/ChoiceStep.php
src/Steps/ChoiceStep.php
<?php namespace Shomisha\LaravelConsoleWizard\Steps; use Shomisha\LaravelConsoleWizard\Contracts\Wizard; class ChoiceStep extends BaseStep { private array $options; public function __construct(string $text, array $options) { parent::__construct($text); $this->options = $options; } ...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Steps/MultipleChoiceStep.php
src/Steps/MultipleChoiceStep.php
<?php namespace Shomisha\LaravelConsoleWizard\Steps; use Shomisha\LaravelConsoleWizard\Contracts\Wizard; class MultipleChoiceStep extends BaseMultipleAnswerStep { private array $choices; public function __construct(string $text, array $choices, array $options = []) { parent::__construct($text, $...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Steps/OneTimeWizard.php
src/Steps/OneTimeWizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Steps; use Shomisha\LaravelConsoleWizard\Command\Wizard; class OneTimeWizard extends Wizard { private array $multiValueSteps; public function __construct(array $steps) { parent::__construct(); $this->assertStepsAreValid($steps); $th...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Steps/BaseMultipleAnswerStep.php
src/Steps/BaseMultipleAnswerStep.php
<?php namespace Shomisha\LaravelConsoleWizard\Steps; abstract class BaseMultipleAnswerStep extends BaseStep { protected string $endKeyword; protected bool $retainEndKeywordInAnswers; protected int $repetitions = 0; protected ?int $maxRepetitions = null; public function __construct(string $text...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Steps/TextStep.php
src/Steps/TextStep.php
<?php namespace Shomisha\LaravelConsoleWizard\Steps; use Shomisha\LaravelConsoleWizard\Contracts\Wizard; class TextStep extends BaseStep { final public function take(Wizard $wizard) { return $wizard->ask($this->text); } }
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Steps/MultipleAnswerTextStep.php
src/Steps/MultipleAnswerTextStep.php
<?php namespace Shomisha\LaravelConsoleWizard\Steps; use Shomisha\LaravelConsoleWizard\Contracts\Wizard; class MultipleAnswerTextStep extends BaseMultipleAnswerStep { final public function take(Wizard $wizard) { $wizard->line($this->text); $answers = $this->loop(function () use ($wizard) { ...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Steps/RepeatStep.php
src/Steps/RepeatStep.php
<?php namespace Shomisha\LaravelConsoleWizard\Steps; use Shomisha\LaravelConsoleWizard\Contracts\Step; use Shomisha\LaravelConsoleWizard\Contracts\Wizard; use Shomisha\LaravelConsoleWizard\Exception\InvalidStepException; class RepeatStep implements Step { private Wizard $wizard; private int $counter = 0; ...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Command/Subwizard.php
src/Command/Subwizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Command; use Shomisha\LaravelConsoleWizard\Exception\SubwizardException; abstract class Subwizard extends Wizard { final function completed() { throw SubwizardException::completedMethodShouldNotBeCalled(); } }
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Command/GeneratorWizard.php
src/Command/GeneratorWizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Command; use Illuminate\Console\GeneratorCommand; use Shomisha\LaravelConsoleWizard\Concerns\WizardCore; use Shomisha\LaravelConsoleWizard\Contracts\Step; use Shomisha\LaravelConsoleWizard\Contracts\Wizard as WizardContract; use Shomisha\LaravelConsoleWizard\Exception\Abo...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Command/Wizard.php
src/Command/Wizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Command; use Illuminate\Console\Command; use Shomisha\LaravelConsoleWizard\Concerns\WizardCore; use Shomisha\LaravelConsoleWizard\Contracts\Wizard as WizardContract; use Shomisha\LaravelConsoleWizard\Exception\AbortWizardException; abstract class Wizard extends Command i...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Command/Generators/GenerateWizardWizard.php
src/Command/Generators/GenerateWizardWizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Command\Generators; use Shomisha\LaravelConsoleWizard\Command\Generators\Subwizards\StepSubwizard; use Shomisha\LaravelConsoleWizard\Command\GeneratorWizard; use Shomisha\LaravelConsoleWizard\Contracts\Step; use Shomisha\LaravelConsoleWizard\DataTransfer\WizardSpecificati...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Command/Generators/Subwizards/MultipleChoiceOptionsSubwizard.php
src/Command/Generators/Subwizards/MultipleChoiceOptionsSubwizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Command\Generators\Subwizards; use Shomisha\LaravelConsoleWizard\Command\Subwizard; use Shomisha\LaravelConsoleWizard\Steps\TextStep; class MultipleChoiceOptionsSubwizard extends Subwizard { function getSteps(): array { return [ 'options' => $...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/src/Command/Generators/Subwizards/StepSubwizard.php
src/Command/Generators/Subwizards/StepSubwizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Command\Generators\Subwizards; use Shomisha\LaravelConsoleWizard\Command\Subwizard; use Shomisha\LaravelConsoleWizard\Contracts\Step; use Shomisha\LaravelConsoleWizard\Steps\ChoiceStep; use Shomisha\LaravelConsoleWizard\Steps\ConfirmStep; use Shomisha\LaravelConsoleWizard...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/tests/LaravelConsoleWizardTestsServiceProvider.php
tests/LaravelConsoleWizardTestsServiceProvider.php
<?php namespace Shomisha\LaravelConsoleWizard\Test; use Illuminate\Support\ServiceProvider; use Shomisha\LaravelConsoleWizard\Command\Generators\GenerateWizardWizard; use Shomisha\LaravelConsoleWizard\Test\TestWizards\AbortWizardTest; use Shomisha\LaravelConsoleWizard\Test\TestWizards\BaseTestWizard; use Shomisha\Lar...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/tests/TestCase.php
tests/TestCase.php
<?php namespace Shomisha\LaravelConsoleWizard\Test; use Orchestra\Testbench\TestCase as OrchestraTestCase; use Shomisha\LaravelConsoleWizard\LaravelConsoleWizardServiceProvider; class TestCase extends OrchestraTestCase { protected function getPackageProviders($app) { return [ LaravelConso...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/tests/TestWizards/Subwizard.php
tests/TestWizards/Subwizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Test\TestWizards; use Shomisha\LaravelConsoleWizard\Command\Wizard; use Shomisha\LaravelConsoleWizard\Steps\ConfirmStep; use Shomisha\LaravelConsoleWizard\Steps\TextStep; class Subwizard extends Wizard { function getSteps(): array { return [ '...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/tests/TestWizards/WizardValidationTestWizard.php
tests/TestWizards/WizardValidationTestWizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Test\TestWizards; use Shomisha\LaravelConsoleWizard\Command\Wizard; use Shomisha\LaravelConsoleWizard\Contracts\ValidatesWizard; use Shomisha\LaravelConsoleWizard\Steps\TextStep; class WizardValidationTestWizard extends Wizard implements ValidatesWizard { protected $...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/tests/TestWizards/InheritAnswersTestWizard.php
tests/TestWizards/InheritAnswersTestWizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Test\TestWizards; use Shomisha\LaravelConsoleWizard\Command\Wizard; use Shomisha\LaravelConsoleWizard\Steps\TextStep; class InheritAnswersTestWizard extends Wizard { protected $signature = "wizard-test:inherit-answers {name?} {--age=}"; protected bool $inheritAn...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/tests/TestWizards/StepValidationTestWizard.php
tests/TestWizards/StepValidationTestWizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Test\TestWizards; use Shomisha\LaravelConsoleWizard\Command\Wizard; use Shomisha\LaravelConsoleWizard\Contracts\ValidatesWizardSteps; use Shomisha\LaravelConsoleWizard\Steps\TextStep; class StepValidationTestWizard extends Wizard implements ValidatesWizardSteps { pro...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/tests/TestWizards/WizardWithOneTimeSubwizard.php
tests/TestWizards/WizardWithOneTimeSubwizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Test\TestWizards; use Shomisha\LaravelConsoleWizard\Command\Wizard; use Shomisha\LaravelConsoleWizard\Steps\OneTimeWizard; use Shomisha\LaravelConsoleWizard\Steps\TextStep; class WizardWithOneTimeSubwizard extends Wizard { protected $signature = 'console-wizard-test:...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/tests/TestWizards/SubwizardTestWizard.php
tests/TestWizards/SubwizardTestWizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Test\TestWizards; use Shomisha\LaravelConsoleWizard\Command\Wizard; use Shomisha\LaravelConsoleWizard\Steps\TextStep; class SubwizardTestWizard extends Wizard { protected $signature = 'console-wizard-test:subwizard'; function getSteps(): array { retu...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/tests/TestWizards/RepeatsStepsTestWizard.php
tests/TestWizards/RepeatsStepsTestWizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Test\TestWizards; use Shomisha\LaravelConsoleWizard\Command\Wizard; use Shomisha\LaravelConsoleWizard\Contracts\RepeatsInvalidSteps; use Shomisha\LaravelConsoleWizard\Steps\TextStep; class RepeatsStepsTestWizard extends Wizard implements RepeatsInvalidSteps { protect...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/tests/TestWizards/BaseTestWizard.php
tests/TestWizards/BaseTestWizard.php
<?php namespace Shomisha\LaravelConsoleWizard\Test\TestWizards; use Shomisha\LaravelConsoleWizard\Command\Wizard; use Shomisha\LaravelConsoleWizard\Contracts\Step; use Shomisha\LaravelConsoleWizard\Steps\ChoiceStep; use Shomisha\LaravelConsoleWizard\Steps\TextStep; class BaseTestWizard extends Wizard { protected...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/tests/TestWizards/AbortWizardTest.php
tests/TestWizards/AbortWizardTest.php
<?php namespace Shomisha\LaravelConsoleWizard\Test\TestWizards; use Shomisha\LaravelConsoleWizard\Command\Wizard; use Shomisha\LaravelConsoleWizard\Contracts\Step; use Shomisha\LaravelConsoleWizard\Steps\ConfirmStep; use Shomisha\LaravelConsoleWizard\Steps\TextStep; class AbortWizardTest extends Wizard { protect...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/tests/Unit/GenerateWizardWizardTest.php
tests/Unit/GenerateWizardWizardTest.php
<?php namespace Shomisha\LaravelConsoleWizard\Test\Unit; use Illuminate\Contracts\Filesystem\Filesystem; use Illuminate\Support\Facades\Storage; use Shomisha\LaravelConsoleWizard\Test\TestCase; class GenerateWizardWizardTest extends TestCase { private Filesystem $disk; protected function path(): string { ...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
shomisha/laravel-console-wizard
https://github.com/shomisha/laravel-console-wizard/blob/8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc/tests/Unit/WizardTest.php
tests/Unit/WizardTest.php
<?php namespace Shomisha\LaravelConsoleWizard\Test\Unit; use Illuminate\Support\Collection; use Illuminate\Validation\ValidationException; use Shomisha\LaravelConsoleWizard\Exception\InvalidStepException; use Shomisha\LaravelConsoleWizard\Steps\ChoiceStep; use Shomisha\LaravelConsoleWizard\Steps\ConfirmStep; use Shom...
php
MIT
8ea5e03e9cc9e25e685912f6b1e2adf32b9815cc
2026-01-05T05:16:24.488418Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/ignore-by-php-version.neon.php
ignore-by-php-version.neon.php
<?php declare(strict_types=1); use PHPStan\DependencyInjection\NeonAdapter; $adapter = new NeonAdapter(); $config = []; if (PHP_VERSION_ID >= 80000) { $config = array_merge_recursive($config, $adapter->load(__DIR__ . '/phpstan-baseline-8+.neon')); } else { $config = array_merge_recursive($config, $adapter->...
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/src/UTF8BOMHelper.php
src/UTF8BOMHelper.php
<?php declare(strict_types=1); namespace Keboola\Csv; class UTF8BOMHelper { /** * @param array $header * @return array */ public static function detectAndRemoveBOM($header) { if (!is_array($header) || empty($header) || $header[0] === null) { return $header; } ...
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/src/AbstractCsvFile.php
src/AbstractCsvFile.php
<?php namespace Keboola\Csv; abstract class AbstractCsvFile { /** * @deprecated use Keboola\Csv\CsvOptions::DEFAULT_DELIMITER */ const DEFAULT_DELIMITER = CsvOptions::DEFAULT_DELIMITER; /** * @deprecated use Keboola\Csv\CsvOptions::DEFAULT_ENCLOSURE */ const DEFAULT_ENCLOSURE = Csv...
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/src/CsvOptions.php
src/CsvOptions.php
<?php namespace Keboola\Csv; class CsvOptions { const DEFAULT_DELIMITER = ','; const DEFAULT_ENCLOSURE = '"'; const DEFAULT_ESCAPED_BY = ''; /** * @var string */ private $delimiter; /** * @var string */ private $enclosure; /** * @var string */ priva...
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/src/CsvReader.php
src/CsvReader.php
<?php declare(strict_types=1); namespace Keboola\Csv; use Iterator; use ReturnTypeWillChange; class CsvReader extends AbstractCsvFile implements Iterator { /** * @deprecated use Keboola\Csv\CsvOptions::DEFAULT_ENCLOSURE */ const DEFAULT_ESCAPED_BY = CsvOptions::DEFAULT_ESCAPED_BY; const SAMPLE...
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/src/LineBreaksHelper.php
src/LineBreaksHelper.php
<?php declare(strict_types=1); namespace Keboola\Csv; class LineBreaksHelper { const REGEXP_DELIMITER = '~'; /** * Detect line-breaks style in CSV file * @param string $sample * @param string $enclosure * @param string $escapedBy * @return string */ public static function d...
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/src/CsvWriter.php
src/CsvWriter.php
<?php namespace Keboola\Csv; use TypeError; use ValueError; class CsvWriter extends AbstractCsvFile { /** * @var string */ private $lineBreak; /** * CsvFile constructor. * @param string|resource $file * @param string $delimiter * @param string $enclosure * @param strin...
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/src/Exception.php
src/Exception.php
<?php declare(strict_types=1); namespace Keboola\Csv; use Exception as CoreException; class Exception extends CoreException { const FILE_NOT_EXISTS = 1; const INVALID_PARAM = 2; const WRITE_ERROR = 3; }
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/src/InvalidArgumentException.php
src/InvalidArgumentException.php
<?php declare(strict_types=1); namespace Keboola\Csv; class InvalidArgumentException extends Exception { }
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/tests/StringObject.php
tests/StringObject.php
<?php declare(strict_types=1); namespace Keboola\Csv\Tests; class StringObject { public function __toString() { return 'me string'; } }
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/tests/CsvWriteTest.php
tests/CsvWriteTest.php
<?php declare(strict_types=1); namespace Keboola\Csv\Tests; use Keboola\Csv\CsvOptions; use Keboola\Csv\CsvWriter; use Keboola\Csv\Exception; use PHPUnit\Framework\Constraint\LogicalOr; use PHPUnit\Framework\Constraint\StringContains; use PHPUnit\Framework\TestCase; use stdClass; class CsvWriteTest extends TestCase...
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/tests/UTF8BOMHelperTest.php
tests/UTF8BOMHelperTest.php
<?php declare(strict_types=1); namespace Keboola\Csv\Tests; use Keboola\Csv\CsvReader; use Keboola\Csv\UTF8BOMHelper; use PHPUnit\Framework\TestCase; class UTF8BOMHelperTest extends TestCase { /** * @dataProvider bomProvider * @param string $bomFile */ public function testDetectAndRemoveBOM($...
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/tests/CsvOptionsTest.php
tests/CsvOptionsTest.php
<?php declare(strict_types=1); namespace Keboola\Csv\Tests; use Keboola\Csv\CsvOptions; use Keboola\Csv\InvalidArgumentException; use PHPUnit\Framework\TestCase; class CsvOptionsTest extends TestCase { public function testAccessors() { $csvFile = new CsvOptions(); self::assertEquals('"', $cs...
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/tests/CsvReadTest.php
tests/CsvReadTest.php
<?php namespace Keboola\Csv\Tests; use Keboola\Csv\CsvOptions; use Keboola\Csv\CsvReader; use Keboola\Csv\CsvWriter; use Keboola\Csv\Exception; use Keboola\Csv\InvalidArgumentException; use PHPUnit\Framework\TestCase; class CsvReadTest extends TestCase { public function testExistingFileShouldBeCreated() { ...
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/tests/LineBreaksHelperTest.php
tests/LineBreaksHelperTest.php
<?php declare(strict_types=1); namespace Keboola\Csv\Tests; use Keboola\Csv\LineBreaksHelper; use PHPUnit\Framework\TestCase; class LineBreaksHelperTest extends TestCase { /** * @dataProvider getDataSet * @param string $enclosure * @param string $escapedBy * @param string $input * @para...
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
keboola/php-csv
https://github.com/keboola/php-csv/blob/a7e5828ceea0e2d8561bb07619c73091e6155c36/tests/bootstrap.php
tests/bootstrap.php
<?php declare(strict_types=1); ini_set('display_errors', 'true'); error_reporting(-1); require_once __DIR__ . '/../vendor/autoload.php';
php
MIT
a7e5828ceea0e2d8561bb07619c73091e6155c36
2026-01-05T05:16:34.451181Z
false
sajadsdi/laravel-setting-pro
https://github.com/sajadsdi/laravel-setting-pro/blob/20036746f3ed7650ae6ee2a0c4b99ce22382deb9/src/LaravelSettingPro.php
src/LaravelSettingPro.php
<?php namespace Sajadsdi\LaravelSettingPro; use Sajadsdi\ArrayDotNotation\Exceptions\ArrayKeyNotFoundException; use Sajadsdi\ArrayDotNotation\Traits\MultiDotNotationTrait; use Sajadsdi\LaravelSettingPro\Concerns\DeleteCallbacksTrait; use Sajadsdi\LaravelSettingPro\Concerns\GetCallbacksTrait; use Sajadsdi\LaravelSett...
php
MIT
20036746f3ed7650ae6ee2a0c4b99ce22382deb9
2026-01-05T05:16:47.821511Z
false
sajadsdi/laravel-setting-pro
https://github.com/sajadsdi/laravel-setting-pro/blob/20036746f3ed7650ae6ee2a0c4b99ce22382deb9/src/Jobs/DeleteSettingJob.php
src/Jobs/DeleteSettingJob.php
<?php namespace Sajadsdi\LaravelSettingPro\Jobs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Sajadsdi\ArrayDotNotation\Exceptions\ArrayKeyNotFoundException; use Sajadsdi\ArrayDotNotation\Traits\Multi...
php
MIT
20036746f3ed7650ae6ee2a0c4b99ce22382deb9
2026-01-05T05:16:47.821511Z
false
sajadsdi/laravel-setting-pro
https://github.com/sajadsdi/laravel-setting-pro/blob/20036746f3ed7650ae6ee2a0c4b99ce22382deb9/src/Jobs/UpdateSettingJob.php
src/Jobs/UpdateSettingJob.php
<?php namespace Sajadsdi\LaravelSettingPro\Jobs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Sajadsdi\ArrayDotNotation\Traits\MultiDotNotationTrait; use Sajadsdi\LaravelSettingPro\Events\UpdateSettin...
php
MIT
20036746f3ed7650ae6ee2a0c4b99ce22382deb9
2026-01-05T05:16:47.821511Z
false