1
0
mirror of https://github.com/danog/telerpc.git synced 2024-11-26 12:04:47 +01:00
telerpc/composer.json

32 lines
779 B
JSON
Raw Normal View History

2020-07-25 20:01:48 +02:00
{
2022-02-23 12:37:06 +01:00
"name": "danog/telerpc",
2020-07-25 20:01:48 +02:00
"description": "RPC Error reporting API",
"type": "project",
2024-01-20 19:13:43 +01:00
"require": {
2024-07-20 19:42:46 +02:00
"danog/madelineproto": "^8",
"amphp/http-server": "3.x-dev",
"amphp/mysql": "3.x-dev",
"amphp/http-server-form-parser": "2.x-dev"
2024-01-20 19:13:43 +01:00
},
"minimum-stability": "dev",
2022-02-23 12:37:06 +01:00
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"friendsofphp/php-cs-fixer": "^2.16"
2020-07-25 20:01:48 +02:00
},
"license": "AGPLV3",
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil.gentili.dg@gmail.com"
}
],
2024-07-20 19:42:46 +02:00
"autoload": {
"files": [
"src/Main.php"
]
},
2022-02-23 12:37:06 +01:00
"scripts": {
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff"
}
2020-07-25 20:01:48 +02:00
}