PHPackages                             atomescrochus/apple-epf-laravel - 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. atomescrochus/apple-epf-laravel

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

atomescrochus/apple-epf-laravel
===============================

Provides models and other tools to use Apple's EPF in Laravel.

0.3.1(8y ago)61091MITPHPPHP ^7.0

Since Mar 18Pushed 2y ago1 watchersCompare

[ Source](https://github.com/atomescrochus/apple-epf-laravel)[ Packagist](https://packagist.org/packages/atomescrochus/apple-epf-laravel)[ Docs](https://github.com/atomescrochus/apple-epf-laravel)[ RSS](/packages/atomescrochus-apple-epf-laravel/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependencies (6)Versions (10)Used By (0)

Integrate Apple's EPF in Laravel
================================

[](#integrate-apples-epf-in-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/56094ce5dadeb134e6e094eddfdc213df6369fa94848ab4c0c00bdec506e0c57/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f61746f6d657363726f636875732f6170706c652d6570662d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/atomescrochus/apple-epf-laravel)[![Total Downloads](https://camo.githubusercontent.com/a29276d661e4a23e40d6334a4797fc4f883a26aa8fa3c9931b43deefc331fd8f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f61746f6d657363726f636875732f6170706c652d6570662d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/atomescrochus/apple-epf-laravel)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/7edfa16088c777e349f8af882f5df991827d9982baed66a9c41490b183c84a4d/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f61746f6d657363726f636875732f6170706c652d6570662d6c61726176656c2f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/atomescrochus/apple-epf-laravel)

*Work in progress. While I do not recommend using in production yet, things should be working as advertised.*

This package provides models and other tools to use Apple's Enterprise Partner Feed (EPF) in Laravel.

**This package do not provides EPF data, you will still have to download your own files.**

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

[](#installation)

You can install the package via composer:

```
composer require atomescrochus/apple-epf-laravel
```

Then you have to install the package' service provider, *unless you are running Laravel &gt;=5.5* (it'll use package auto-discovery) :

```
'providers' => [
    ...

    Atomescrochus\EPF\EPFServiceProvider::class

    ....
]
```

You will *have to* add another connection to your `config/database.php` file, this package will be looking for it. You can of course use the same credential as your main database, but to my experience, since EPF database is pretty huge, it's a good idea to keep things separate, it just make things easier.

Below, you'll find the template of the connection to add. You can see we're using the `.env` file to set the connection infos, if necessary. You will have to add those variables to your own `.env`, don't forget!

**This package's models will be looking for the connection with the name "apple-epf", do not change the connection name ot you will break things!**

```
