Skip to content

Commit

Permalink
Merge pull request #5 from pear/topics/composer-for-pear
Browse files Browse the repository at this point in the history
Updated/New Composer support for Console_Color2
  • Loading branch information
till committed Feb 21, 2014
2 parents 771a5a4 + 3fac58b commit e7cc88d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
# composer related
composer.lock
composer.phar
vendor
23 changes: 19 additions & 4 deletions composer.json
Expand Up @@ -2,7 +2,9 @@
"name": "pear/Console_Color2",
"description": "This Class allows you to easily use ANSI console colors in your application.",
"type": "library",
"keywords": [ "console" ],
"keywords": [
"console"
],
"homepage": "https://github.com/pear/Console_Color2",
"license": "MIT",
"authors": [
Expand All @@ -20,9 +22,22 @@
}
],
"require": {
"php": ">=5.0.0"
"php": ">=5.0.0",
"pear/pear_exception": "*"
},
"autoload": {
"psr-0": { "Console_Color2": "" }
"psr-0": {
"Console": "./"
}
},
"include-path": [
"./"
],
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Color2",
"source": "https://github.com/pear/Console_Color2"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}
}

0 comments on commit e7cc88d

Please sign in to comment.