diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57872d0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/vendor/ diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..4fb2ba5 --- /dev/null +++ b/composer.json @@ -0,0 +1,20 @@ +{ + "name": "imsop/simplexml_debug", + "description": "Tools for debugging your code when working with PHP's SimpleXML functions.", + "authors": [{ + "name": "Rowan Collins", + "homepage": "http://rwec.co.uk", + "role": "Lead" + },{ + "name": "Josh Sherman", + "email": "josh@gravityblvd.com", + "homepage": "http://joshtronic.com", + "role": "Contributor" + }], + "autoload": { + "classmap": ["src/"] + }, + "require-dev": { + "satooshi/php-coveralls": "dev-master" + } +} diff --git a/simplexml_dump.php b/src/simplexml_dump.php similarity index 100% rename from simplexml_dump.php rename to src/simplexml_dump.php diff --git a/simplexml_tree.php b/src/simplexml_tree.php similarity index 100% rename from simplexml_tree.php rename to src/simplexml_tree.php