PHPackages                             kgengler/feed-client - 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. kgengler/feed-client

ActiveLibrary

kgengler/feed-client
====================

An Atom and RSS feed client for the Laravel Framework

v4.0.1(9y ago)1211[1 issues](https://github.com/kgengler/laravel-feed-client/issues)PHPPHP &gt;=5.3.0

Since Dec 4Pushed 9y ago1 watchersCompare

[ Source](https://github.com/kgengler/laravel-feed-client)[ Packagist](https://packagist.org/packages/kgengler/feed-client)[ RSS](/packages/kgengler-feed-client/feed)WikiDiscussions v4.x Synced 2mo ago

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

Feed Client Laravel Service Provider
====================================

[](#feed-client-laravel-service-provider)

[![Packagist](https://camo.githubusercontent.com/c0362e02d70978daedebaaf0275c8620101e419ceeafe22a2b9ee7e6ecf8572a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6b67656e676c65722f666565642d636c69656e742e737667)](https://packagist.org/packages/kgengler/feed-client)

> This branch is for Laravel 4.x

An Atom and RSS feed client for the Laravel Framework

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

[](#installation)

Add the following line to the `require` section of `composer.json`:

```
{
    "require": {
        "kgengler/feed-client": "4.*"
    }
}
```

Run `composer update`.

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

[](#configuration)

Publish the package configuration using Artisan.

```
php artisan config:publish kgengler/feed-client

```

Find the providers key in your app/config/app.php and register the Feed Client Service Provider.

```
'providers' => array(
    // ...
    'Kgengler\FeedClient\FeedClientServiceProvider',
)
```

Find the aliases key in your app/config/app.php and add the Feed Client facade alias.

```
'aliases' => array(
    // ...
    'FeedClient' => 'Kgengler\FeedClient\FeedClientFacade'
)
```

Open the configuration file in app/config/packages/kgengler/feed-client/config.php, and add the feed you need to access

```
