PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Marcel Pociot   BotMan   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: BotMan
A framework agnostic PHP library to build chat bot
Author: By
Last change: Add illuminate/support requirement
Removes tightenco/collect
Move to laravel/serializable-closure
Date: 10 months ago
Size: 1,926 bytes
 

Contents

Class file image Download
{ "name": "botman/botman", "license": "MIT", "description": "Create messaging bots in PHP with ease.", "keywords": [ "Bot", "BotMan", "Chatbot" ], "homepage": "http://github.com/botman/botman", "authors": [ { "name": "Marcel Pociot", "email": "m.pociot@gmail.com" } ], "require": { "php": ">=7.1", "symfony/http-foundation": "^2.8 || ^3.0 || ^4.0 || ^5.0 || ^6.0", "mpociot/pipeline": "^1.0.2", "react/socket": "~1.0", "spatie/macroable": "^1.0", "psr/container": "^1.0 || ^2.0", "laravel/serializable-closure": "^1.0", "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0" }, "require-dev": { "codeigniter/framework": "~3.0", "orchestra/testbench": "^3.4 || ^4.0 || ^5.0 || ^6.0", "phpunit/phpunit": "^6.0 || ^7.0 || ^8.0", "mockery/mockery": "^1.1", "doctrine/cache": "^1.6", "symfony/cache": "^3.4.35 || ^4.3.7 || ^5.0", "ext-curl": "*", "dms/phpunit-arraysubset-asserts": "^0.4.0" }, "suggest": { "doctrine/cache": "Use any Doctrine cache driver for cache", "symfony/cache": "Use any Symfony cache driver for cache" }, "autoload": { "psr-4": { "BotMan\\BotMan\\": "src/" } }, "autoload-dev": { "psr-4": { "BotMan\\BotMan\\Tests\\": "tests/" } }, "extra": { "branch-alias": { "dev-master": "2.1-dev" }, "laravel": { "providers": [ "BotMan\\BotMan\\BotManServiceProvider" ], "aliases": { "BotMan": "BotMan\\BotMan\\Facades\\BotMan" } } }, "scripts": { "test": "phpunit" }, "prefer-stable": true, "minimum-stability": "dev" }