mirror of
https://gh.wpcy.net/https://github.com/fairpm/aspirecloud.git
synced 2026-06-20 02:22:28 +08:00
10 realistic TYPO3 extensions with tags for local testing. Runs as part of db:seed and skips if TYPO3 extensions already exist. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Joost de Valk <joost@altha.nl>
17 lines
359 B
PHP
17 lines
359 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
public function run(): void
|
|
{
|
|
$this->call(AuthorizationSeeder::class);
|
|
$this->call(UserSeeder::class);
|
|
$this->call(PluginSeeder::class);
|
|
$this->call(Typo3ExtensionSeeder::class);
|
|
}
|
|
}
|