├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── composer.json └── src ├── ExceptionHandler.php ├── Formatters ├── BaseFormatter.php ├── ExceptionFormatter.php ├── HttpExceptionFormatter.php └── UnprocessableEntityHttpExceptionFormatter.php ├── Provider └── LaravelServiceProvider.php ├── Reporters ├── BugsnagReporter.php ├── ReporterInterface.php ├── RollbarReporter.php └── SentryReporter.php ├── ResponseFactory.php └── config └── optimus.heimdal.php /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ### Commit Message Format 2 | 3 | [Angular.js commit message style](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#) 4 | 5 | Each commit message consists of a **header**, a **body** and a **footer**. The header has a special 6 | format that includes a **type**, a **scope** and a **subject**: 7 | 8 | ``` 9 | (): 10 | 11 | 12 | 13 |