composer.json 1.02 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": "*"
MBoretto's avatar
MBoretto committed
24 25 26 27 28 29 30 31 32 33 34 35
    },
    "autoload": {
        "psr-4": {
            "Longman\\TelegramBot\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests/"
        }
    },
    "require-dev": {
36
        "phpunit/phpunit": "~4.1",
MBoretto's avatar
MBoretto committed
37
        "phpspec/phpspec": "~2.1",
38
        "squizlabs/php_codesniffer": "~2.3"
MBoretto's avatar
MBoretto committed
39 40
    }
}