tg-file-decoder/composer.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2020-02-03 21:17:53 +01:00
{
"name": "danog/tg-file-decoder",
"description": "Decode Telegram bot API file IDs",
"type": "project",
2020-02-06 02:46:15 +01:00
"license": "AGPL-3.0-only",
2020-02-03 21:17:53 +01:00
"keywords": ["telegram", "mtproto", "bot API", "file ID", "video", "stickers", "audio", "files"],
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
],
2020-02-03 21:54:57 +01:00
"require": {
2024-04-01 17:45:19 +02:00
"php-64bit": ">=8.2"
2020-02-03 21:54:57 +01:00
},
2020-02-03 21:17:53 +01:00
"require-dev": {
2024-04-01 17:39:42 +02:00
"phpunit/phpunit": "^11",
2024-04-01 15:02:20 +02:00
"amphp/php-cs-fixer-config": "^2",
2024-04-01 17:45:19 +02:00
"vimeo/psalm": "dev-master",
"danog/phpdoc": "^0.1.22"
2020-02-03 21:17:53 +01:00
},
"autoload": {
"psr-4": {
"danog\\Decoder\\": "src/"
},
"files": [
2024-04-01 15:02:20 +02:00
"src/functions.php"
2020-02-03 21:17:53 +01:00
]
},
"autoload-dev": {
"psr-4": {
"danog\\Decoder\\Test\\": "tests"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"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",
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit --coverage-text --configuration phpunit.xml.dist"
2022-07-26 18:45:22 +02:00
},
"config": {
"allow-plugins": {
"phabel/phabel": true
}
2020-02-03 21:17:53 +01:00
}
}