PHPackages                             filefabrik/bootraiser - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. filefabrik/bootraiser

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

filefabrik/bootraiser
=====================

Laravel boot helper for custom packages

v2.0.2(1y ago)0905—0%[1 issues](https://github.com/Filefabrik/bootraiser/issues)2MITPHP

Since Jun 8Pushed 1y ago1 watchersCompare

[ Source](https://github.com/Filefabrik/bootraiser)[ Packagist](https://packagist.org/packages/filefabrik/bootraiser)[ RSS](/packages/filefabrik-bootraiser/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (10)Versions (4)Used By (2)

Bootraiser
==========

[](#bootraiser)

Booting Utility for Laravel custom Packages

### Features

[](#features)

- Bootraiser saves you all the booting|publishable boilerplate required for a Laravel package.
- Bootraiser can be easily integrated into existing packages.
- Bootraiser is completely based on laravel
- no “extra-magic” packages necessary

If you write your own Laravel packages, parts of your package usually have to be booted in Laravel.

This can sometimes cost an unnecessary amount of time.

Filefabrik-Bootraiser provides you with all important Laravel boot methods immediately and without much configuration effort. It is also quite cool if the Laravel “publish” methods are supported so that views|translations|configs and so on, overrides can be published later.

- documentation:
- github-project:
- packagist.org:

**Bootraiser strictly uses [SemVer](https://semver.org/) so please use `~2.0`**

Installation:

```
composer require "filefabrik/bootraiser:~2.0"
```

Modify your YourPackageServiceProvider.php
------------------------------------------

[](#modify-your-yourpackageserviceproviderphp)

Then go to your provider file, which is usually under:

`~/packages/your-package/src/Providers/YourPackageServiceProvider.php`

YourPackageServiceProvider.php file looks like this:

```
