- Placeholder Images - 5 providers with real photos and colored placeholders
- Avatar Generation - Automatic initials and colors
- Placeholder Videos - Professional video clips
- Placeholder Audio - Music tracks and silent audio
- Lorem Ipsum Text - Classic placeholder text generation
- Fake Data - FakerPHP integration for realistic content
- Twig Functions - Simple, intuitive template functions
For fully automatic setup, visit the related Flex recipe repository and follow the instructions to add it to the composer.json in the consuming project, as the recipe is not yet part of the Symfony's main recipe repository.
composer require neuralglitch/omnia-ipsum{# Images #}
<img src="{{ omnia_image(600, 400) }}" alt="Placeholder">
<img src="{{ omnia_avatar('John Doe', 100) }}" alt="Avatar">
{# Videos #}
<video src="{{ omnia_video(1920, 1080) }}" controls></video>
{# Audio #}
<audio src="{{ omnia_audio(10) }}" controls></audio>
{# Text #}
<h1>{{ lorem_title() }}</h1>
<p>{{ lorem_paragraphs(3) }}</p>
{# Fake Data #}
<p>{{ fake('name') }} - {{ fake('email') }}</p>
<p>{{ fake_text(200) }}</p>Important: Disable in production by configuring the bundle only for dev and test environments.
- Quick Reference - Get started in 5 minutes
- Image Providers - All image providers and options
- Video Providers - Video options and clips
- Audio Providers - Audio providers and tracks
- Text Generation - Lorem Ipsum and Faker integration
- Faker Integration - All available fake data formatters
- Configuration - Configuration options
- PHP 8.1 or higher
- Symfony 6.4, 7.x, or 8.x
- Twig 3.0 or higher