Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
elimentz committed Nov 14, 2015
1 parent b93ad56 commit d401d64
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,25 @@ Pull this package in through Composer.

```

Add the service provider to your `config/app.php` file:

```php

providers => array(
'providers' => array(

//...
'Ixudra\Render\RenderServiceProvider',
Ixudra\Render\RenderServiceProvider::class,

),

```

Add the facade to your `config/app.php` file:

```php

facades => array(
'facades' => array(

//...
'Render' => 'Ixudra\Render\Facades\Render',
'Render' => Ixudra\Render\Facades\Render::class,

),

Expand Down
5 changes: 1 addition & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ixudra/render",
"description": "Custom PHP rendering library for the Laravel 5 framework - developed by Ixudra",
"version": "0.0.1",
"version": "0.0.2",
"keywords": ["Ixudra", "Laravel", "Rendering"],
"homepage": "http://ixudra.be",
"license": "MIT",
Expand All @@ -20,9 +20,6 @@
},

"autoload": {
"classmap": [
"src/database/migrations"
],
"psr-0": {
"Ixudra\\Render\\": "src/"
}
Expand Down
2 changes: 1 addition & 1 deletion src/Ixudra/Render/Facades/Render.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php namespace App\Modules\Render\Facades;
<?php namespace Ixudra\Render\Facades;


use Illuminate\Support\Facades\Facade;
Expand Down

0 comments on commit d401d64

Please sign in to comment.