MadelineClient/composer.json

40 lines
740 B
JSON
Raw Normal View History

2017-10-11 16:05:00 +02:00
{
2017-10-11 20:26:58 +02:00
"name": "hearot/madelineclient",
"description": "A client for MadelineProto",
"license": "AGPLv3",
"authors": [
{
"name": "hearot",
"email": "gabriel@hearot.it"
}
],
"type": "Client Interface",
"require": {
"danog/madelineproto": "dev-master",
"rych/bytesize": "^1.0"
},
"autoload": {
"psr-0": {
"hearot\\MadelineClient\\": "src/"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/danog/phpseclib"
}
],
"minimum-stability": "dev",
"extra": {
"phar-builder": {
"compression": "No",
"name": "madeline.phar",
"include": [
"src"
],
2017-10-11 21:00:26 +02:00
"include-dev": true,
"skip-shebang": false
2017-10-11 20:26:58 +02:00
}
}
2017-10-11 16:05:00 +02:00
}