Skip to content

Commit

Permalink
Fixed issue to properly create the config file
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Jose Jimenez committed Apr 2, 2014
1 parent 2c8aeda commit af5d214
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
...
}
Expand All @@ -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
Expand Down

0 comments on commit af5d214

Please sign in to comment.