2016-07-15 13:03:36 +02:00
|
|
|
{
|
|
|
|
"name": "danog/madelineproto",
|
|
|
|
"description": "PHP implementation of telegram's MTProto protocol.",
|
|
|
|
"type": "project",
|
2018-02-18 14:18:18 +01:00
|
|
|
"license": "AGPL-3.0-only",
|
2016-08-07 23:23:10 +02:00
|
|
|
"homepage": "https://daniil.it/MadelineProto",
|
2016-11-17 13:05:31 +01:00
|
|
|
"keywords": ["telegram", "mtproto", "protocol", "bytes", "messenger", "client", "PHP", "video", "stickers", "audio", "files", "GB"],
|
2017-05-16 15:12:04 +02:00
|
|
|
"conflict": {
|
|
|
|
"krakjoe/pthreads-polyfill": "*"
|
|
|
|
},
|
2016-07-15 13:03:36 +02:00
|
|
|
"require": {
|
2017-01-28 00:39:07 +01:00
|
|
|
"php": ">=5.6.0",
|
Documentation rework (#349)
* Documentation rework
* Apply fixes from StyleCI
* Documentation fixes
* Login as bot through web/cli API, allow using invite links in joinChannel, full invite links in importChatInvite and checkChatInvite, non-invite links in importChatInvite
* Apply fixes from StyleCI
* Logging fixes
* Build docs
* Add methods to modify start template, bugfix to logging and keyboard conversion
* Add TL documentator
* Document MTProto methods
* Documenting methods...
* 7% documented
* Bugfixes
* Update docs
* Update docs
* Simplify file management
* Implement automatic object conversion for media, and more awesome stuff
* Implement automatic object conversion for media, and more awesome stuff
* Implement event update handler and file upload/download callback
* Auto-detect mime type, duration, width and height of media
* Update docs
* Document new file functions
* Fix links
* Fix links
* Update bot.php to use event loop
* Implement webhook update handler and forking in main loop
* Build docs
* Better docs
* Fixes to secret chats
* Almost finished updating docs
* Bugfixes, implemented infinite loop for loop() method, almost finished docs
* Finish writing docs
* Add automatic documentation builder script
* Finished writing docs
2018-03-20 12:48:05 +01:00
|
|
|
"danog/primemodule": "^1.0.2",
|
|
|
|
"danog/magicalserializer": "^1.0",
|
2018-02-20 15:49:54 +01:00
|
|
|
"phpseclib/phpseclib": "dev-master#27370df",
|
2017-02-11 15:16:57 +01:00
|
|
|
"vlucas/phpdotenv": "^2.4",
|
2017-03-11 19:54:51 +01:00
|
|
|
"erusev/parsedown": "^1.6",
|
2017-12-12 11:59:18 +01:00
|
|
|
"rollbar/rollbar": "dev-master",
|
2017-05-27 23:24:15 +02:00
|
|
|
"ext-curl": "*",
|
2017-05-27 23:21:14 +02:00
|
|
|
"ext-xml": "*"
|
2016-07-15 13:03:36 +02:00
|
|
|
},
|
2017-01-22 17:40:56 +01:00
|
|
|
"require-dev": {
|
|
|
|
"phpdocumentor/reflection-docblock": "^3.1"
|
|
|
|
},
|
2017-07-24 12:55:17 +02:00
|
|
|
"suggest": {
|
2018-02-20 12:24:58 +01:00
|
|
|
"ext-libtgvoip": "Install the php-libtgvoip extension to make phone calls (https:/github.com/danog/php-libtgvoip)",
|
2018-02-20 15:49:54 +01:00
|
|
|
"ext-sockets": "Install the socket extension to speed up MadelineProto"
|
2017-07-24 12:55:17 +02:00
|
|
|
},
|
2016-07-15 13:03:36 +02:00
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Daniil Gentili",
|
|
|
|
"email": "daniil@daniil.it"
|
|
|
|
}
|
|
|
|
],
|
2016-08-07 23:23:10 +02:00
|
|
|
"autoload": {
|
|
|
|
"psr-0": {
|
|
|
|
"danog\\MadelineProto\\": "src/"
|
2017-05-16 15:12:04 +02:00
|
|
|
},
|
|
|
|
"files": [
|
2018-02-18 14:33:17 +01:00
|
|
|
"src/BigIntegor.php",
|
2017-05-16 15:12:04 +02:00
|
|
|
"src/Socket.php",
|
2017-08-23 14:24:25 +02:00
|
|
|
"src/Collectable.php",
|
|
|
|
"src/Threaded.php",
|
|
|
|
"src/Volatile.php",
|
|
|
|
"src/Thread.php",
|
|
|
|
"src/Worker.php",
|
2018-02-18 14:33:17 +01:00
|
|
|
"src/Pool.php"
|
2017-05-16 15:12:04 +02:00
|
|
|
]
|
2016-08-07 23:23:10 +02:00
|
|
|
}
|
2016-07-15 13:03:36 +02:00
|
|
|
}
|