PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   Laravel Video Chat   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Video Chat
Multiuser video chat using Socket.IO and WebRTC
Author: By
Last change: Update composer.json

Travis CI

Add Test

Fixed composer.json

Add File Sharing

Date: 6 years ago
Size: 1,351 bytes
 

Contents

Class file image Download
{ "name": "php-junior/laravel-video-chat", "description": "Laravel Video Chat using Socket.IO and WebRTC", "type": "library", "license": "MIT", "authors": [ { "name": "Nyi Nyi Lwin", "email": "nyinyilwin1992@hotmail.com" } ], "keywords": [ "laravel", "socket.io", "video-chat", "chat", "realtime", "webrtc" ], "require": { "php" : ">=7.0", "predis/predis": "^1.1", "dflydev/apache-mime-types": "^1.0", "illuminate/support": "^5.5", "illuminate/database": "^5.5", "illuminate/contracts": "^5.5" }, "autoload": { "psr-4": { "PhpJunior\\LaravelVideoChat\\": "src/" }, "files": [ "helper/helpers.php" ] }, "autoload-dev": { "psr-4": { "PhpJunior\\LaravelVideoChat\\Tests\\": "tests/" } }, "extra": { "laravel": { "providers": [ "PhpJunior\\LaravelVideoChat\\LaravelVideoChatServiceProvider" ], "aliases": { "Chat": "PhpJunior\\LaravelVideoChat\\Facades\\Chat" } } }, "require-dev": { "phpunit/phpunit": "^6.4", "graham-campbell/testbench": "^4.0" } }