Skip to content

Commit

Permalink
Enhancement: composer setup
Browse files Browse the repository at this point in the history
  • Loading branch information
till committed Feb 17, 2014
1 parent fb63d46 commit fa69261
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
# composer related
composer.lock
composer.phar
vendor
31 changes: 31 additions & 0 deletions 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": "*"
}
}

0 comments on commit fa69261

Please sign in to comment.