diff --git a/.gitignore b/.gitignore index f0ac15d..062d2c4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ * !.gitignore - +!composer.json !domtemplate.php !LICENCE.txt diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..09dd6e8 --- /dev/null +++ b/composer.json @@ -0,0 +1,22 @@ +{ + "name": "kroc/domtemplate", + "description": "A templating engine that manipulates static HTML using DOM & XPath so as to separate template and logic", + "type": "library", + "keywords": ["template","dom"], + "license": "CC-BY-3.0", + "authors": [ + { + "name": "Kroc Camen", + "email": "kroc@camendesign.com", + "homepage": "http://camendesign.com", + "role": "Developer" + } + ], + "require": { + }, + "autoload": { + "psr-4": { + "": "./" + } + } +}