Ignition is a beautiful and customizable error page for PHP applications
Using this bundle, you can replace Symfony's default exception pages with Ignition.
This is what how the Ignition looks like in the browser.
There's also a beautiful dark mode.
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
You can install the package via composer:
composer require --dev spatie/symfony-ignition-bundle
Enable the bundle in config/bundles.php
:
return [
// ...
+ Spatie\SymfonyIgnitionBundle\IgnitionBundle::class => ['dev' => true],
];
Use bin/console debug:config ignition
to see configuration options.
config/packages/ignition.yaml
:
when@dev:
ignition:
application_path: '%kernel.project_dir%'
dark_mode: false
should_display_exception: '%kernel.debug%'
# if you want AI solutions to your app's errors
openai_key: 'key-here'
When you now throw an exception anywhere in your app...
class IndexController extends AbstractController
{
#[Route('/', name: 'index')]
public function index(): Response
{
throw new Exception('Hello Ignition!');
}
}
... you'll see a beautiful error page.
To learn all the options that Ignition provides, including error reporting to Flare, head over to the readme of spatie/ignition.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.