1
0
mirror of https://github.com/danog/tgseclib.git synced 2024-11-26 20:24:39 +01:00

Add composer.json file for Composer support

This commit is contained in:
Rob Loach 2012-06-08 15:39:36 -04:00
parent 7e9a975296
commit 9a0087719e
2 changed files with 26 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,4 +1,3 @@
*~
vendor
composer.json
composer.lock

26
composer.json Normal file
View File

@ -0,0 +1,26 @@
{
"name": "phpseclib/phpseclib",
"description": "PHP Secure Communications Library",
"type": "library",
"homepage": "http://phpseclib.sourceforge.net",
"license": "MIT",
"authors": [
{
"name": "terrafrost",
"homepage": "http://frostjedi.com"
}
],
"support": {
"forum": "http://www.frostjedi.com/phpbb/viewforum.php?f=46",
"issues": "https://github.com/phpseclib/phpseclib/issues",
"source": "https://github.com/phpseclib/phpseclib"
},
"autoload": {
"psr-0": {
"Crypt": "phpseclib/",
"File": "phpseclib/",
"Math": "phpseclib/",
"Net": "phpseclib/"
}
}
}