Download the PHP package rubik-llc/laravel-invite without Composer

On this page you can find all versions of the php package rubik-llc/laravel-invite. 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?

Informations about the package laravel-invite

Laravel invite

Platform Latest Version on Packagist Check & fix styling GitHub Workflow Status

A simple invitation system for Eloquent models in your Laravel application. The package doesn't cover sending emails, views or routing.

Installation

You can install the package via composer:

You can publish and run the migrations with:

You can publish the config file with:

This is the contents of the published config file:

Usage

Registering the Referable Model

In order to let a model be able to make invitations, simply add the CanInvite trait to the class of that model.

Registering the Invitable Model

In order to let a model be able to receive invitations, add the RecivesInvitation trait to the class of that model.

Making invitations

There are two ways to make an invitation:

1. Making invitations using the Facade

2. Making invitations from a referer Model

Making an invitation from a model will automatically set in as the referer. Make sure the model class uses the CanInvite trait.

NOTE: An email is required in order to make an invitation.

Additionally, you can specify other parameters like:

Referer

You can associate a referer to an invitation using the referer method which accepts an eloquent model as a parameter.

or update the referer of an existing invitation.

Invitee

You can associate an invitee to an invitation using the invitee method. This method accepts an eloquent model or a model class name.

This option should be used when the invitee is created before the invitation is sent.

or update the invitee of an existing invitation.

This option should be used when the invitee is created after the invitation is accepted, and you want to specify its model class.

Expiration

In addition to the config file, you can specify the expiration of a specific invitation using the expireAt or expireIn methods.

This method accepts a date as string or Carbon instance and sets the invitation expires_at property to the given date.

This method accepts two parameters, the value and unit.

Getting an invitation by its token

Accepting invitations

Declining invitations

Delete on decline

If delete_on_decline option in config/invite.php is set to true, whenever an invitation is declined it will automatically be deleted.

Auto delete expired invitations

Enabling expire.delete.auto option in config/invite.php, will run Rubik\LaravelInvite\Commands\DeleteExpiredInvitesCommand every hour that deletes all invitations the expiry date of which has surpassed the value given in expire.delete.after option in config/invite.php

Using a custom Invitation class

If you are using a custom invitation class make sure it extends the default Invitation class that is shipped with this package.

In addition to that, you need to set the invitation_model value in the config file to the path of your custom class.

`

Events

The package dispatches various events

Testing

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-invite with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
spatie/laravel-package-tools Version ^1.9.2
illuminate/contracts Version ^9.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 rubik-llc/laravel-invite contains the following files

Loading the files please wait ....