1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-26 19:24:42 +01:00
MadelineProto/composer.json

143 lines
4.3 KiB
JSON
Raw Normal View History

2016-07-15 13:03:36 +02:00
{
"name": "danog/madelineproto",
"description": "PHP implementation of telegram's MTProto protocol.",
"type": "project",
"license": "AGPL-3.0-only",
2019-12-26 20:26:27 +01:00
"homepage": "https://docs.madelineproto.xyz",
2021-08-16 18:34:47 +02:00
"keywords": [
"telegram",
"mtproto",
"protocol",
"bytes",
"messenger",
"client",
"PHP",
"video",
"stickers",
"audio",
"files",
"GB"
],
"conflict": {
"krakjoe/pthreads-polyfill": "*",
"ext-pthreads": "*"
},
2016-07-15 13:03:36 +02:00
"require": {
2021-12-03 18:15:56 +01:00
"php-64bit": ">=8.0",
2019-06-13 14:43:30 +02:00
"danog/primemodule": "^1",
2019-06-24 16:28:54 +02:00
"erusev/parsedown": "^1.7",
"symfony/polyfill-mbstring": "*",
2018-04-10 00:12:34 +02:00
"ext-mbstring": "*",
2018-05-14 20:23:01 +02:00
"ext-json": "*",
Merge alpha into master (async, huge bugfixes and more) (#546) * Implement async and lots of bugfixes * Implement more async * Implement async, implement bugfixes for the connection module, for the datacenter module, huge bugfixes, huge perfomance improvements, media DCs for https, advanced selecting, custom var_dump, totally rewritten IOLoop and response mechanism, promises, improvements to the TL parser, custom mb_substr * Apply fixes from StyleCI * Bugfixes * Apply fixes from StyleCI * Bugfixes, implement combined promises * Apply fixes from StyleCI * Support passing method arguments as callable * Starting to write async upload logic * Apply fixes from StyleCI * Start implementing async file upload * Apply fixes from StyleCI * bugfix * Apply fixes from StyleCI * Start rewriting connection module * Add PHP file docblocks for all classes * Start working on new async stream API * Finish writing stream API * More stream API fixes * Apply fixes from StyleCI * Rewrite DataCenter and Connection modules * Clean up stream API documentation * Fixes * Apply fixes from StyleCI * Add referenced parameter to get length of buffer to read in getReadBuffer API * Moved all MessageHandler code in the Connection module, added a PHP version warning in the phar * Start fixing reads * Fix all protocol stream wrappers * Apply fixes from StyleCI * Implement disconnection, and remove end function * Working async RPC * Implement async file upload * Bugfix * Method recall bugfixes * Bugfixes * Trait bugfixes * Fix FIFO buffer * Bugfixes and speedtests * Async logging * Implement websocket streams * Implement loop API, signal API, clean closing and start changing layer * Small magna, websocket and HTTP fixes * Clean up loop API * Improved stack traces, 2FA and async * Login fixes * Added instructions for manual verification * Small fixes * More app info improvements * More app info improvements * TL and 2FA fixes * Update to layer 89 * More bugfixes * Implement broken media reporting * Remove debug comments * PHP 7.2 backwards compatibility * Bugfixes * Async key generation * Some simplifications * Transport fixes * Cleanup * async API * Performance fixes * Fixes to async API * Bugfixes * Implement one-time async loop * Authorization and logging fixes * Update to layer 91 * 7to5 fix * Null coalesce conversion * Implement socks5 proxy * Implement HTTP proxy * Fixes to HTTP proxy * MTProxy and socks5 fixes * Disable PHP 5 conversion * Proxies have higher priority * Avoid error handling in vendor * Override composer dependencies * Fix travis build * Final composer fixes * Proxy logic fixes * Fix get_updates update handling * Do not use parallel file driver if not supported * Refactor loader and implement HTTP fixes * Suppress errors in loader * HTTP and authorization fixes * HTTP fixes * Improved peer management * Use HTTP protocol on altervista * Small bugfixes * Minor fixes * Docufix * Docufix * Legacy fixes * Fix message queue * Avoid updating if using MTProxy * Improve logs and examples * Trim final newlines while converting parse mode * Reimplement noResponse flag * Async combined event handler and APIFactory fixes * Actually return config * Case-insensitive methods * Bugfix * Apply fixes from StyleCI (#545) * MTProxy fixes * PHP 5 warning * Improved PHP 5 warning * Use <br> along with newlines in web logs * Update docs
2018-12-26 20:51:14 +01:00
"ext-xml": "*",
2019-12-13 12:57:47 +01:00
"ext-dom": "*",
"ext-filter": "*",
"ext-hash": "*",
"ext-zlib": "*",
2019-06-07 17:21:43 +02:00
"ext-fileinfo": "*",
2020-01-19 13:56:54 +01:00
"amphp/amp": "^2",
2020-01-05 18:43:47 +01:00
"amphp/http-client": "^4",
2019-12-13 12:57:47 +01:00
"amphp/socket": "^1",
2019-12-27 15:50:00 +01:00
"amphp/dns": "^1",
2019-12-22 19:10:30 +01:00
"amphp/byte-stream": "^1",
"amphp/file": "^2",
2020-11-13 19:01:01 +01:00
"amphp/mysql": "^2",
2020-07-30 19:51:16 +02:00
"amphp/postgres": "^1.2",
2019-12-13 12:57:47 +01:00
"danog/dns-over-https": "^0.2",
2019-12-22 12:34:48 +01:00
"amphp/http-client-cookies": "^1",
2020-02-07 21:13:49 +01:00
"danog/tg-file-decoder": "^0.1",
2020-02-28 14:14:02 +01:00
"danog/magicalserializer": "^1.0",
2020-03-06 14:30:00 +01:00
"league/uri": "^6",
"danog/ipc": "^0.1",
2020-07-28 20:39:32 +02:00
"amphp/log": "^1.1",
2020-08-09 14:44:41 +02:00
"danog/loop": "^0.1.0",
"phpseclib/phpseclib": "^3",
2020-09-22 23:10:56 +02:00
"amphp/redis": "^1.0",
"symfony/polyfill-php80": "^1.18",
2021-04-05 18:29:46 +02:00
"amphp/websocket-client": "^1.0",
2021-09-16 18:00:37 +02:00
"psr/http-factory": "^1.0",
"psr/log": "^1|^2|^3",
2022-06-25 19:15:30 +02:00
"webmozart/assert": "^1.11"
2016-07-15 13:03:36 +02:00
},
"require-dev": {
"phpdocumentor/reflection-docblock": "^5.2",
2019-12-26 19:17:31 +01:00
"ext-ctype": "*",
2021-08-16 18:34:47 +02:00
"danog/phpdoc": "^0.1.7",
2021-12-03 18:15:56 +01:00
"phpunit/phpunit": "^9",
2021-09-15 17:10:38 +02:00
"phabel/phabel": "^1",
2022-07-18 14:41:49 +02:00
"bamarni/composer-bin-plugin": "1.5.0",
2021-12-21 14:44:39 +01:00
"roave/security-advisories": "dev-latest",
"symfony/yaml": "^6.0"
},
2017-07-24 12:55:17 +02:00
"suggest": {
2022-06-04 16:51:23 +02:00
"ext-primemodule": "Install the primemodule and FFI extensions to speed up MadelineProto (https://prime.madelineproto.xyz)",
"ext-ffi": "Install the primemodule and FFI extensions to speed up MadelineProto (https://prime.madelineproto.xyz)",
"ext-pdo": "Install pdo extension to support database used as cache",
"ext-openssl": "Install the openssl extension for faster crypto",
"ext-gmp": "Install the gmp extension for faster crypto"
2017-07-24 12:55:17 +02:00
},
2021-08-16 18:34:47 +02:00
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
],
2016-08-07 23:23:10 +02:00
"autoload": {
2019-10-29 20:53:51 +01:00
"psr-4": {
"danog\\MadelineProto\\": "src/danog/MadelineProto"
},
"files": [
2018-02-18 14:33:17 +01:00
"src/BigIntegor.php",
2019-06-18 12:31:44 +02:00
"src/polyfill.php"
]
},
2020-02-04 21:46:38 +01:00
"autoload-dev": {
"psr-4": {
"danog\\MadelineProto\\Test\\": "tests/danog/MadelineProto"
2020-06-16 17:52:55 +02:00
},
"files": [
"tools/build_docs/schemas.php",
"tools/build_docs/merge.php",
"tools/build_docs/layerUpgrade.php"
]
2020-02-04 21:46:38 +01:00
},
2019-09-02 17:08:36 +02:00
"scripts": {
2019-10-31 15:06:25 +01:00
"build": [
"@docs",
2020-10-17 12:47:05 +02:00
"@phpdoc",
2020-04-05 15:33:01 +02:00
"@cs-fix",
"@psalm"
2019-10-31 15:06:25 +01:00
],
2020-10-17 12:47:05 +02:00
"phpdoc": [
"@phpdocInternal",
"@phpdocMain"
2020-10-15 19:07:37 +02:00
],
2019-09-02 17:08:36 +02:00
"check": [
"@cs",
"@test"
],
2019-12-26 19:17:31 +01:00
"test-php7": "tests/test-conversion.sh 70",
"test-php56": "tests/test-conversion.sh 5",
2019-09-02 17:08:36 +02:00
"cs": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff",
2020-04-05 15:33:01 +02:00
"psalm": "psalm",
2020-10-17 12:47:05 +02:00
"phpdocMain": "php tools/phpdoc.php",
2019-10-31 15:06:25 +01:00
"docs": "php tools/build_docs.php",
2021-09-15 17:10:38 +02:00
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit --coverage-text --config tests/phpunit.xml",
"bin": "echo 'bin not installed'",
"post-install-cmd": ["@composer bin all install --ansi"],
"post-update-cmd": ["@composer bin all update --ansi"]
2021-08-16 18:34:47 +02:00
},
"extra": {
"phabel": {
"revision": 0
}
2022-04-29 21:01:04 +02:00
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"phabel/phabel": true
}
2019-09-02 17:08:36 +02:00
}
2020-10-18 15:02:37 +02:00
}