Skip to content

Commit af5d214

Browse files
author
Jose Jimenez
committed
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.
1 parent 2c8aeda commit af5d214

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Add the `bllim/datatables` under the `require` key after that run the `composer
1818
"require": {
1919
"laravel/framework": "4.0.*",
2020
...
21-
"bllim/datatables": "*"
21+
"bllim/datatables": "dev-master"
2222
}
2323
...
2424
}
@@ -40,7 +40,7 @@ Composer will download the package. After package downloaded, open "app/config/a
4040
Finally you need to publish a configuration file by running the following Artisan command.
4141

4242
```php
43-
$ php artisan config:publish bllim/laravel4-datatables-package
43+
$ php artisan config:publish bllim/datatables
4444
```
4545

4646
### Usage

0 commit comments

Comments
 (0)