Skip to content

Commit

Permalink
Merge pull request #1 from pear/topics/composer-for-pear
Browse files Browse the repository at this point in the history
Updated/New Composer support for Crypt_CBC
  • Loading branch information
till committed Feb 21, 2014
2 parents 4e1bf0e + 973de1a commit 4d789a3
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,4 @@
# composer related
composer.lock
composer.phar
vendor
31 changes: 31 additions & 0 deletions composer.json
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"authors": [
{
"email": "colin@viebrock.ca",
"name": "Colin Viebrock",
"role": "Lead"
}
],
"autoload": {
"psr-0": {
"Crypt": "./"
}
},
"description": "More info available on: http://pear.php.net/package/Crypt_CBC",
"include-path": [
"./"
],
"license": "BSD",
"name": "pear/crypt_cbc",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Crypt_CBC",
"source": "https://github.com/pear/Crypt_CBC"
},
"type": "library",
"require": {
"pear/pear_exception": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}

0 comments on commit 4d789a3

Please sign in to comment.