spatie/symfony-ignition-bundle 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

spatie/symfony-ignition-bundle

最新稳定版本:1.2.0

Composer 安装命令:

composer require spatie/symfony-ignition-bundle

包简介

A beautiful error page for Symfony apps

README 文档

README

Latest Version on Packagist Tests Total Downloads

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.

Screenshot of ignition

There's also a beautiful dark mode.

Screenshot of ignition in dark mode

Support us

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.

Installation

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],
 ];

Configuration

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'

Usage

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.

screenshot

To learn all the options that Ignition provides, including error reporting to Flare, head over to the readme of spatie/ignition.

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 15.6k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 28
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 28
  • Watchers: 2
  • Forks: 6
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-01-26