This project manages its dependencies using Composer. Learn more
composer.json 1.04 KB
{
    "name": "mboretto/php-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/mboretto/php-telegram-bot"
    },
    "authors": [
        {
            "name": "Avtandil Kikabidze aka LONGMAN",
            "email": "akalongman@gmail.com",
            "homepage": "http://longman.ge",
            "role": "Developer"
        }
    ],
    "require": {
        "php": ">=5.3.0",
        "ext-pdo": "*"
        
    },
    "autoload": {
        "psr-4": {
            "Longman\\TelegramBot\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests/"
        }
    },
    "minimum-stability": "dev",
    "require-dev": {
        "phpunit/phpunit": "4.1.*",
        "phpspec/phpspec": "~2.1",
        "squizlabs/php_codesniffer": "2.3.*"
    }
}