From af5d214f59204e36c1e854749001c74d0b8c261d Mon Sep 17 00:00:00 2001 From: Jose Jimenez Date: Wed, 2 Apr 2014 09:13:30 -0700 Subject: [PATCH 1/2] Fixed issue to properly create the config file I noticed that the config file has been omitted from the tag branches. When we require "bllim/datatables": "*" from composer, it grabs the latest 1.3.3 tag version, but this is missing that important config file. There are two ways to fix this, to require the master branch in composer which does contain the file, or make a new tag with the latest files from master and confirming that it contains the /config file. I have also updated the php artisan command, since the one currently listed there is not the correct one. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0d5a7120..3528fa5f 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Add the `bllim/datatables` under the `require` key after that run the `composer "require": { "laravel/framework": "4.0.*", ... - "bllim/datatables": "*" + "bllim/datatables": "dev-master" } ... } @@ -40,7 +40,7 @@ Composer will download the package. After package downloaded, open "app/config/a Finally you need to publish a configuration file by running the following Artisan command. ```php -$ php artisan config:publish bllim/laravel4-datatables-package +$ php artisan config:publish bllim/datatables ``` ### Usage From e3cb9f7a285563f49ce4012c4d90c59ca5257c76 Mon Sep 17 00:00:00 2001 From: Jose Jimenez Date: Thu, 3 Apr 2014 09:20:27 -0700 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3528fa5f..5dc64bf9 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Add the `bllim/datatables` under the `require` key after that run the `composer "require": { "laravel/framework": "4.0.*", ... - "bllim/datatables": "dev-master" + "bllim/datatables": "*" } ... }