Skip to content

Commit

Permalink
Update Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkaOnLine committed Nov 5, 2015
1 parent 7d4ce86 commit 9359cf1
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[![Total Downloads](https://poser.pugx.org/DarkaOnLine/Ripcord/downloads.svg)](https://packagist.org/packages/DarkaOnLine/Ripcord)

Ripcord
==========

This packages is a copy of [https://code.google.com/p/ripcord/](https://code.google.com/p/ripcord/).


Installation
============

```php
composer require darkaonline/ripcord
```

For Laravel 5 Users
============

- Open your `AppServiceProvider` (located in `app/Providers`) and add this line in `register` function
```php
$this->app->register(\Ripcord\Providers\Laravel\ServiceProvider::class);
```
- Run `ripcord:publish` to publish configs (`config/ripcord.php`) or just copy `ripcord.php` file from `vendor/darkaonline/ripcord/src/Ripcord/Prividers/Laravel/config` and paste to `config` folder

## Extending

Just extend `Ripcord` class and all your coinfg and basic connection will be done for you automaticly

```php
namespace Foo\Bar;

use Ripcord\Providers\Laravel\Ripcord;

class Provider extends Ripcord
{
...
}
```

0 comments on commit 9359cf1

Please sign in to comment.