-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
36 lines (35 loc) · 921 Bytes
/
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
{
"name": "lartie/telegram-bot-pagination",
"description": "Telegram Bot Pagination ",
"keywords": ["laravel", "telegram api", "telegram", "pagination", "telegram-callback", "telegram bot"],
"type": "library",
"homepage": "https://github.com/lartie/telegram-bot-pagination",
"license": "MIT",
"authors": [
{
"name": "Artie",
"email": "log.wil.log@gmail.com",
"homepage": "https://github.com/lartie"
}
],
"require": {
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.0",
"phpspec/prophecy": "^1.5"
},
"autoload": {
"psr-4": {
"LArtie\\TelegramBotPagination\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LArtie\\TelegramBotPagination\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}