diff --git a/.gitignore b/.gitignore index 9dcc53c..1f9cb03 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,5 @@ output/*.html output/*.pdf resume/sample_long.md + +/vendor/ diff --git a/README.md b/README.md index 17376eb..e85e3ef 100644 --- a/README.md +++ b/README.md @@ -53,5 +53,17 @@ The initial inspiration is from the [Sample Resume Template][srt]. However, no HTML from that project has been used in this. General layout has been reused, and media queries have been added. It's a nice template, and if you are a more comfortable with html than markdown, you should use it. +## Changelog + +* __0.9.0__ : Add composer and update README with new changelog +* __0.8.8__ : Add Chinese text example (@ishitcno1) +* __0.8.7__ : Update pdf formatting of the modern template (@roleary) +* __0.8.6__ : Fix output path (@abhikandoi2000) +* __0.8.5__ : Fix issue #2 +* __0.8.4__ : Correct chmod and add parameter for output directory (@kevinxucs) +* __0.8.2__ : Update build script and add refresh command option +* __0.8.1__ : Updating formatting of initial templates +* __0.8__ : Initial Release to Public + [srt]: http://sampleresumetemplate.net/ "A great starting point" [blog]: http://there4development.com/blog/2012/12/31/markdown-resume-builder/ diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..574082f --- /dev/null +++ b/composer.json @@ -0,0 +1,29 @@ +{ + "name": "there4/markdown-resume", + "description": "Generate a responsive CSS3 and HTML5 resume with Markdown, with optional PDF output.", + "license": "MIT", + "authors": [ + { + "name": "Craig Davis", + "email": "craig@there4development.com", + "role": "Developer" + }, { + "name": "Kaiwen Xu", + "email": "kevin@kevxu.net", + "role": "Contributor" + }, { + "name": "ishitcno1", + "role": "Contributor" + }, { + "name": "Roland O'Leary", + "role": "Contributor" + }, { + "name": "Abhishek Kandoi", + "email": "abhikandoi2000@gmail.com", + "role": "Contributor" + } + ], + "minimum-stability": "dev", + "require": { + } +}