diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..7e09062 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# editorconfig.org + +root = true + +[*] +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +indent_size = 4 +indent_style = space diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6d0a4b6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# Ignore OS Related/Generic +_* +*.lock +*.old +*~ +.idea/ +vendor/ + +!.gitkeep +!.travis.yml diff --git a/readme.md b/readme.md index c7aa9ce..196895d 100644 --- a/readme.md +++ b/readme.md @@ -1,8 +1,8 @@ -# FPDF +# FPDF [![Build Status](https://travis-ci.org/feryardiant/fpdf.svg?branch=master)](https://travis-ci.org/feryardiant/fpdf) -Unofficial FPDF library with clean and readable codes +Unofficial FPDF library with PSR-0 compliant, clean and readable code -This is version 1.7.0 with some changes: +This is version 1.7.1 with some changes: * [x] The library is namespaced in `Fpdf` * [x] directory structure follow the PSR-0 standard with `src/` as root @@ -11,6 +11,7 @@ This is version 1.7.0 with some changes: * [x] on error a RuntimeException is thrown instead on lib dramatically dying * [x] Refactor all method in `camelCase`. * [ ] Rebuild documentations and tutorials. +* [ ] Complete testunit. ## Installing with composer