All Projects → rigor789 → airbrake-laravel

rigor789 / airbrake-laravel

Licence: MIT license
Laravel package for the Airbrake API, which supports Errbit

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to airbrake-laravel

django-airbrake
Django Airbrake provides a logging handler to push exceptions and other errors to airbrakeapp or other airbrake-compatible exception handler services (e.g. aTech Media's Codebase).
Stars: ✭ 17 (+6.25%)
Mutual labels:  airbrake
laravel route summary
Create a summary of all the laravel routes
Stars: ✭ 11 (-31.25%)
Mutual labels:  laravel-package
pushbullet
Pushbullet notifications channel for Laravel
Stars: ✭ 14 (-12.5%)
Mutual labels:  laravel-package
simple-recaptcha-v3
🤖 This repository contains simple reCAPTCHA v3 integration for your Laravel application.
Stars: ✭ 25 (+56.25%)
Mutual labels:  laravel-package
laravel-smart-facades
Strategy design pattern in laravel, the easiest way.
Stars: ✭ 84 (+425%)
Mutual labels:  laravel-package
laravel-ab
Laravel A/B experiment testing tool
Stars: ✭ 108 (+575%)
Mutual labels:  laravel-package
firebase-php
Firebase Realtime Database PHP Wrapper
Stars: ✭ 41 (+156.25%)
Mutual labels:  laravel-package
laravel-embed
Effortless responsive embeds for videos, slideshows and more.
Stars: ✭ 106 (+562.5%)
Mutual labels:  laravel-package
voyager-page-blocks
A module to provide page blocks for Voyager 📝
Stars: ✭ 80 (+400%)
Mutual labels:  laravel-package
laravel-dadata
PHP SDK Laravel пакет работы с сервисом DaData.ru, для исправления синтаксических ошибок в информации контактных данных клиентов сайта и вывода подсказок поля форм.
Stars: ✭ 39 (+143.75%)
Mutual labels:  laravel-package
voyager-portfolio
A Portfolio Module for Laravel Voyager 💋
Stars: ✭ 15 (-6.25%)
Mutual labels:  laravel-package
laravel-helper-functions
Laravel-specific and pure PHP Helper Functions.
Stars: ✭ 106 (+562.5%)
Mutual labels:  laravel-package
lastfm
🎶 Last.fm API client for PHP. Comes with a Laravel service provider.
Stars: ✭ 17 (+6.25%)
Mutual labels:  laravel-package
laracash
PHP Laravel Money Package 💰
Stars: ✭ 52 (+225%)
Mutual labels:  laravel-package
bread-templates
BREAD Templates with Voyager
Stars: ✭ 19 (+18.75%)
Mutual labels:  laravel-package
airbrake-django
A Django project for Airbrake
Stars: ✭ 29 (+81.25%)
Mutual labels:  airbrake
laravel-snowflake
This Laravel package to generate 64 bit identifier like the snowflake within Twitter.
Stars: ✭ 94 (+487.5%)
Mutual labels:  laravel-package
laravel-test-watcher
Laravel Test Watcher
Stars: ✭ 20 (+25%)
Mutual labels:  laravel-package
spid-laravel
SPID authentication package for Laravel
Stars: ✭ 41 (+156.25%)
Mutual labels:  laravel-package
laravel-charts-css
Laravel component to create gorgeous Charts.css charts.
Stars: ✭ 105 (+556.25%)
Mutual labels:  laravel-package

Airbrake Laravel Package

Latest Stable Version Total Downloads Latest Unstable Version License

The master branch is for Laravel 5! For Laravel 4 check out the laravel4 branch.

Versions starting with 0.* are for Laravel 4 Versions starting with 1.* are for Laravel 5

This is a Laravel package for utilizing Airbrake API to collect errors.

It Supports ErrBit just change the host in the config.

Install

First pull in the packages as a dependency

composer require rigor789/airbrake-laravel 

Then add the ServiceProvider to your config/app.php

    ...
    'providers' => [
  
        ...
        'rigor789\AirbrakeLaravel\AirbrakeServiceProvider',
        ...

    ],
    ...
  

Once you have added the ServiceProvider to your app you will need to do some basic configuration. This can be done in your .env file:

AIRBRAKE_ENABLED=true
AIRBRAKE_API_KEY=your_api_key

You can also publish the config file for more advanced configuration options:

php artisan vendor:publish --provider="rigor789\AirbrakeLaravel\AirbrakeServiceProvider"

Then you can enable error reporting also in the config, and customize it as you want. You are good to go!

Issues

If you find any issues, submit a report here

Contributing

If you want to contribute, just submit a pull request.

License

Licensed under the MIT license. See the LICENSE file for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].