Download the PHP package devsfort/laravel-pigeon-chat without Composer

On this page you can find all versions of the php package devsfort/laravel-pigeon-chat. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?
devsfort/laravel-pigeon-chat
Rate from 1 - 5
Rated 5.00 based on 1 reviews

Informations about the package laravel-pigeon-chat

DEVSFORT CHAT WITH SOCKET.IO

A Laravel package that allows you to add a complete user messaging system into your new/existing Laravel application with only a few easy steps.

Requirements

Features

Installation

Video Tutorial on YouTube - Click Here

OR

Follow the steps below :

1. Install the package in your Laravel app

Quick Note: If you are installing this package in a new project, make sure to install the default user authentication system provided with Laravel.

1.1 Install the laravel/ui package

1.2 Install the pigeon package

2. Publishing Assets

Packages' assets to be published :
The Important assets:

to publish the assets, do the following command line with changing the tag value .. that means after --tag= write devschat- + asset name as mentioned above.
Example :

3. Migrations

Migrate the new migrations that added by the previous step

4. Storage Symlink

Create a shortcut or a symlink to the storage folder into the public folder

5. App config

For Laravel <=v5.4 that doesn't support package auto-discovery, add the following provider into config/app.php providers array list :

and the following alias into into config/app.php aliases:


Configurations

You can find and modify the default configurations of the package at config/devschat.php file that you published in the step 2 of the installation steps .. and all configurations is documented well to be understood by other developers.

Messenger Name

This value is the name of the app which is used in the views or elsewhere in the app.

Messenger Path in Your App

This value is the path of the package or in other meaning, it is the prefix of all the registered routes in this package. e.g (yourapp.domain/devschat)

Package's web routes middleware

This value is the middleware of all routes registered in this package which is by default : auth.

User Avatar

This is the user's avatar setting that includes :

which is the default folder name to upload and get user's avatar from.

which is the default avatar file name for users stored in database .. and when you publishing assets, a copy of the avatar photo will be copied into your storage path.

Attachments By Default

This array contains the important default values that used in this package :

This is the default folder name for attachments in the storage which is all the attachments will be stored in .. and also going to be used in attachments urls in the views.

It is the route name of the download attachments method.

Controller's namespace

This property if you may need to change the namespace of the route's controllers of this package after publishing the 'controllers' asset, from the default one to your App's controllers namespace.

By default: DevsFort\Pigeon\Chat\Http\Controllers
If published to be modified, it should be like: App\Http\Controllers\vendor\DevsFort

Start NODE SERVER

License

MIT


All versions of laravel-pigeon-chat with dependencies

PHP Build Version
Package Version
Requires php Version ^7.3||^7.4||^8.0||^8.1||^8.2||^8.3
laravel/framework Version ^7.0||^8.0||^9.0||^10.0||^11.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package devsfort/laravel-pigeon-chat contains the following files

Loading the files please wait ....