composer.json 1.12 KB
Newer Older
MBoretto's avatar
MBoretto committed
1 2 3 4 5 6 7 8 9 10 11 12 13
{
    "name": "longman/telegram-bot",
    "type": "library",
    "description": "PHP telegram bot",
    "keywords": ["telegram", "bot", "api"],
    "license": "MIT",
    "homepage": "https://github.com/akalongman/php-telegram-bot",
    "support": {
        "issues": "https://github.com/akalongman/php-telegram-bot/issues",
        "source": "https://github.com/akalongman/php-telegram-bot"
    },
    "authors": [
        {
14 15 16 17
            "name": "Avtandil Kikabidze aka LONGMAN",
            "email": "akalongman@gmail.com",
            "homepage": "http://longman.me",
            "role": "Developer"
MBoretto's avatar
MBoretto committed
18 19 20
        }
    ],
    "require": {
21
        "php": ">=5.5.0",
MBoretto's avatar
MBoretto committed
22
        "ext-pdo": "*",
MBoretto's avatar
MBoretto committed
23
        "ext-curl": "*",
24
        "ext-mbstring": "*",
25 26
        "monolog/monolog": "^1.19",
        "guzzlehttp/guzzle": "~6.0"
MBoretto's avatar
MBoretto committed
27 28 29 30 31 32 33 34
    },
    "autoload": {
        "psr-4": {
            "Longman\\TelegramBot\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
35
            "Longman\\TelegramBot\\Tests\\Unit\\": "tests/unit"
MBoretto's avatar
MBoretto committed
36 37 38
        }
    },
    "require-dev": {
LONGMAN's avatar
LONGMAN committed
39
        "phpunit/phpunit": "~4.8",
40
        "squizlabs/php_codesniffer": "~2.5"
MBoretto's avatar
MBoretto committed
41 42
    }
}