-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
36 lines (36 loc) · 1.14 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "danog/pipesbot",
"description": "Telegram bot based on MadelineProto capable of creating pipelines between other bots.",
"authors": [{
"name": "Daniil Gentili",
"email": "[email protected]"
}],
"type": "project",
"support": {
"issues": "https://github.com/danog/pipesbot/issues"
},
"require": {
"danog/madelineproto": "^4",
"amphp/dns": "dev-master#aa1892bd as 0.9",
"amphp/socket": "0.10.12 as 1",
"amphp/websocket": "dev-master#db2da8c5b3ed22eae37da5ffa10ab3ea8de19342 as 1",
"amphp/websocket-client": "dev-master#aff808025637bd705672338b4904ad03a4dbdc04 as 1"
},
"repositories": [{
"type": "git",
"url": "https://github.com/danog/phpseclib"
}],
"minimum-stability": "dev",
"license": "AGPL-3.0-only",
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master"
},
"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"
}
}