aspirecloud/database/seeders/DatabaseSeeder.php
Joost de Valk 43dc998cce Add TYPO3 extension seeder with sample data
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>
2026-03-20 15:55:38 +01:00

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);
}
}