PHPackages                             prevailexcel/laravel-bible - 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. prevailexcel/laravel-bible

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

prevailexcel/laravel-bible
==========================

A Laravel Package for nearly 2500 Bible versions available across over 1600 languages, powered by API.Bible.

1.0.0(3y ago)2172MITPHP

Since Apr 5Pushed 3y ago1 watchersCompare

[ Source](https://github.com/PrevailExcel/laravel-bible)[ Packagist](https://packagist.org/packages/prevailexcel/laravel-bible)[ RSS](/packages/prevailexcel-laravel-bible/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

laravel-bible
=============

[](#laravel-bible)

[![Latest Stable Version](https://camo.githubusercontent.com/0bdeac96a709c81d5622344c1eec65c5a7e1ee5c49ff24fb1457de1761be9eb7/68747470733a2f2f706f7365722e707567782e6f72672f7072657661696c657863656c2f6c61726176656c2d6269626c652f762f737461626c652e737667)](https://packagist.org/packages/prevailexcel/laravel-bible)[![License](https://camo.githubusercontent.com/70623f3eacdbe862e0f38328abeab66ad45f670f67ab2ee619a8db403293324d/68747470733a2f2f706f7365722e707567782e6f72672f7072657661696c657863656c2f6c61726176656c2d6269626c652f6c6963656e73652e737667)](LICENSE.md)

> A Laravel Package for nearly 2500 Bible versions available across over 1600 languages, powered by API.Bible.

Installation
------------

[](#installation)

[PHP](https://php.net) 5.4+ or [HHVM](http://hhvm.com) 3.3+, and [Composer](https://getcomposer.org) are required.

To get the latest version of Laravel Bible, simply require it

```
composer require prevailexcel/laravel-bible
```

Or add the following line to the require block of your `composer.json` file.

```
"prevailexcel/laravel-bible": "1.0.*"

```

You'll then need to run `composer install` or `composer update` to download it and have the autoloader updated.

Once Laravel Bible is installed, you need to register the service provider. Open up `config/app.php` and add the following to the `providers` key.

```
'providers' => [
    ...
    PrevailExcel\Bible\BibleServiceProvider::class,
    ...
]
```

> If you use **Laravel &gt;= 5.5** you can skip this step and go to [**`configuration`**](https://github.com/PrevailExcel/laravel-bible#configuration)

- `PrevailExcel\Bible\BibleServiceProvider::class`

Also, register the Facade like so:

```
'aliases' => [
    ...
    'Bible' => PrevailExcel\Bible\Facades\Bible::class,
    ...
]
```

Configuration
-------------

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="PrevailExcel\Bible\BibleServiceProvider"
```

A configuration-file named `bible.php` with some sensible defaults will be placed in your `config` directory:

```
