-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (58 loc) · 1.3 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "tiagosampaio/telegram-bot-php",
"description": "The easiest way to integrate your PHP application with Telegram Bots.",
"type": "library",
"keywords": ["telegram", "sdk", "telegram-bot"],
"license": "OSL-3.0",
"authors": [
{
"name": "Tiago Sampaio",
"email": "tiago@tiagosampaio.com"
}
],
"minimum-stability": "stable",
"require": {
"php":"^7.0",
"php-di/php-di": "^6.0",
"guzzlehttp/guzzle": "^6.3",
"tiagosampaio/data-object": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"fzaninotto/faker": "^1.8",
"squizlabs/php_codesniffer": "^3.3",
"phpmd/phpmd": "^2.6"
},
"autoload": {
"psr-4": {
"Telegram\\": "src/"
},
"files": [
"src/app/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"TelegramTest\\": "dev/test/unit/Telegram"
}
},
"scripts": {
"mkdir-phpunit": [
"mkdir -p ./temp/tests/phpunit/coverage"
],
"phpunit": [
"@mkdir-phpunit",
"vendor/bin/phpunit -c dev/test/unit/phpunit.xml.dist dev/test/unit/ --coverage-html temp/tests/phpunit/coverage"
],
"phpcs": [
"vendor/bin/phpcs --standard=PSR2 --severity=1 src"
],
"tests": [
"@phpunit",
"@phpcs"
],
"post-autoload-dump": [
"@tests"
]
}
}