Skip to content

Commit 41e62d7

Browse files
committedSep 22, 2015
Bump apha version v6.0.0-alpha.
Add contributing file. Update readme.
1 parent 70398da commit 41e62d7

File tree

4 files changed

+40
-4
lines changed

4 files changed

+40
-4
lines changed
 

‎change-log.md ‎CHANGELOG.md

File renamed without changes.

‎CONTRIBUTING.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Contributing
2+
3+
Contributions are **welcome** and will be fully **credited**.
4+
5+
We accept contributions via Pull Requests on [Github](https://github.com/yajra/laravel-datatables-oracle).
6+
7+
8+
## Pull Requests
9+
10+
- **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](http://pear.php.net/package/PHP_CodeSniffer).
11+
12+
- **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date.
13+
14+
- **Consider our release cycle** - We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option.
15+
16+
- **Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please squash them before submitting.
17+
18+
19+
**Happy coding**!

‎LICENSE ‎LICENSE.md

File renamed without changes.

‎readme.md

+21-4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ This package is created to handle [server-side](https://www.datatables.net/manua
2929
- Works with Laravel Dependency Injection and IoC Container.
3030
- Provides a [DataTable Html Builder](http://datatables.yajrabox.com/html) to help you use the package with less code.
3131
- Provides XSS filtering function to optionally escape all or specified column values using `escapeColumns('*'\['column'])` method.
32+
- DataTable as a Service implementation.
33+
- Provides DataTable Service.
34+
- Provides artisan command for creating a service. `php artisan datatables:make UsersDataTable`
35+
- Provides artisan command for creating a DataTable scope. `php artisan datatables:scope ActiveUserScope`
36+
- Provides built-in support for server-side buttons. (Formerly TableTools).
37+
- Available buttons are `csv, excel, pdf, print`.
38+
- Built-in support for exporting to CSV, EXCEL and PDF using [Laravel-Excel](https://github.com/Maatwebsite/Laravel-Excel).
39+
- Built-in printer friendly view or create your own by overriding `printPreview()` method.
3240

3341
## Buy me a beer
3442
<a href='https://pledgie.com/campaigns/29515'><img alt='Click here to lend your support to: Laravel Datatables and make a donation at pledgie.com !' src='https://pledgie.com/campaigns/29515.png?skin_name=chrome' border='0' ></a>
@@ -39,7 +47,7 @@ This package is created to handle [server-side](https://www.datatables.net/manua
3947
- [Demo Application](http://datatables.yajrabox.com) is available for artisan's reference.
4048

4149
## Quick Installation
42-
**Laravel 5:** `composer require yajra/laravel-datatables-oracle:~5.0`
50+
**Laravel 5:** `composer require yajra/laravel-datatables-oracle:~6.0`
4351

4452
**Laravel 4:** `composer require yajra/laravel-datatables-oracle:~3.0`
4553

@@ -64,11 +72,20 @@ This package is created to handle [server-side](https://www.datatables.net/manua
6472

6573
And that's it! Start building out some awesome DataTables!
6674

67-
## License
75+
## Contributing
76+
77+
Please see [CONTRIBUTING](https://github.com/yajra/laravel-datatables/blob/master/CONTRIBUTING.md) for details.
6878

69-
Licensed under the [MIT License](https://github.com/yajra/laravel-datatables/blob/master/LICENSE).
79+
## Security
80+
81+
If you discover any security related issues, please email [aqangeles@gmail.com](mailto:aqangeles@gmail.com) instead of using the issue tracker.
7082

7183
## Credits
7284

7385
- This project is used to be a fork from [bllim/laravel4-datatables-package](https://github.com/bllim/laravel4-datatables-package).
74-
- Credits to all the contributors of this package
86+
- [All Contributors](https://github.com/yajra/laravel-datatables/graphs/contributors)
87+
88+
## License
89+
90+
The MIT License (MIT). Please see [License File](https://github.com/yajra/laravel-datatables/blob/master/LICENSE.md) for more information.
91+

0 commit comments

Comments
 (0)
Failed to load comments.