diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..869f498 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +# composer related +composer.lock +composer.phar +vendor diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..8af6960 --- /dev/null +++ b/composer.json @@ -0,0 +1,31 @@ +{ + "authors": [ + { + "email": "mike@php.net", + "name": "Michael Wallner", + "role": "Lead" + } + ], + "autoload": { + "psr-0": { + "File_Gettext": "./" + } + }, + "description": "More info available on: http://pear.php.net/package/File_Gettext", + "include-path": [ + "./" + ], + "license": "BSD", + "name": "pear/file_gettext", + "support": { + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=File_Gettext", + "source": "https://github.com/pear/File_Gettext" + }, + "type": "library", + "require": { + "pear/pear_exception": "*" + }, + "require-dev": { + "phpunit/phpunit": "*" + } +} \ No newline at end of file