Download the PHP package jobmetric/laravel-membership without Composer

On this page you can find all versions of the php package jobmetric/laravel-membership. 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-membership

Contributors Forks Stargazers MIT License LinkedIn

Membership for laravel

This is a website membership management package for Laravel that you can use in your projects.

In this package, you can entrust the members or users of any model or table you have to it and don't worry about anything anymore, this package helps to make user memberships simple and you can entrust any membership to it without worry.

Install via composer

Run the following command to pull in the latest version:

Documentation

To use the services of this package, please follow the instructions below.

In this package, we have two trait classes that must be connected to both sides of the user and member models.

User models can include user and admin models or anything else that we want to include in the member model.

The member model is a model that wants any user to be a member, such as post, product, order, and anything else.

For example, you need to connect two trait classes to both user and order models.

User model

Order model

The allowMemberCollection method must be in the order class, and we define the collections we want to have in the order class.

The owner collection is a single collection that has only one member, and the members collection is a multiple collection that can have multiple members.

The array keys are designed according to the needs of your model fields, and you can use any word, but the value in front of each key must be selected between single and multiple.

single: means that only one member can be in the collection.

multiple: means that multiple members can be in the collection.

Now we have connected our two traits to the mentioned models, and now we can use their functions to register and get user membership information in the order model.

HasMember trait methods

members()

This method returns the members of the order model.

storeMember($person, $collection, $expired_at = null)

This method stores a member in the order model.

$person: The user model that you want to store in the order model.

$collection: The collection that you want to store the user in it.

$expired_at: The expiration date of the membership. If you do not specify this parameter, the membership will not expire.

forgetMember($person, $collection)

This method removes a member from the order model.

$person: The user model that you want to remove from the order model.

$collection: The collection that you want to remove the user from it.

hasMember($person, $collection)

This method checks if a user is a member of the order model.

$person: The user model that you want to check if it is a member of the order model.

$collection: The collection that you want to check if the user is a member of it.

renewMember($person, $collection, $expired_at = null)

This method renews the membership of a user in the order model.

$person: The user model that you want to renew the membership in the order model.

$collection: The collection that you want to renew the membership in it.

$expired_at: The expiration date of the membership. If you do not specify this parameter, the membership will not expire.

updateExpiredAtMember($person, $collection, $expired_at = null)

This method updates the expiration date of the membership of a user in the order model.

$person: The user model that you want to update the expiration date of the membership in the order model.

$collection: The collection that you want to update the expiration date of the membership in it.

$expired_at: The expiration date of the membership. If you do not specify this parameter, the membership will not expire.

getPerson($collection = null, $is_expired = false)

This method returns the user who is a member of the order model.

$collection: The collection that you want to get the user from it. If you do not specify this parameter, the method will return the owner of the order model.

$is_expired: If you want to get the expired membership, you can set this parameter to true.

CanMember trait methods

persons()

This method returns the orders that the user is a member of.

storePerson($memberable, $collection, $expired_at = null)

This method stores a user in the order model.

$memberable: The member model that you want to store the user in it.

$collection: The collection that you want to store the user in it.

$expired_at: The expiration date of the membership. If you do not specify this parameter, the membership will not expire.

forgetPerson($memberable, $collection)

This method removes a user from the order model.

$memberable: The member model that you want to remove the user from it.

$collection: The collection that you want to remove the user from it.

hasPerson($memberable, $collection)

This method checks if a user is a member of the order model.

$memberable: The member model that you want to check if the user is a member of it.

$collection: The collection that you want to check if the user is a member of it.

renewPerson($memberable, $collection, $expired_at = null)

This method renews the membership of a user in the order model.

$memberable: The member model that you want to renew the membership in it.

$collection: The collection that you want to renew the membership in it.

$expired_at: The expiration date of the membership. If you do not specify this parameter, the membership will not expire.

updateExpiredAtPerson($memberable, $collection, $expired_at = null)

This method updates the expiration date of the membership of a user in the order model.

$memberable: The member model that you want to update the expiration date of the membership in it.

$collection: The collection that you want to update the expiration date of the membership in it.

$expired_at: The expiration date of the membership. If you do not specify this parameter, the membership will not expire.

getMember($memberable = null, $collection = null, $is_expired = false)

This method returns the user who is a member of the order model.

$memberable: The member model that you want to get the user from it. If you do not specify this parameter, the method will return the owner of the user model.

$collection: The collection that you want to get the user from it. If you do not specify this parameter, the method will return the owner of the user model.

$is_expired: If you want to get the expired membership, you can set this parameter to true.

Add personable attribute in Resource

In the member resource, there is a field called personable that can display your model, but it must be set as follows.

First, you create a listener for the model you want to display in the member resource.

Then, you add the following code to the listener.

Finally, you add the listener to the EventServiceProvider class.

The work is done, now when the MemberResource is called and if the UserResource should be returned, the details of that resource will be displayed in the personable attribute.

Add memberable attribute in Resource

In the member resource, there is a field called memberable that can display your model, but it must be set as follows.

First, you create a listener for the model you want to display in the member resource.

Then, you add the following code to the listener.

Finally, you add the listener to the EventServiceProvider class.

The work is done, now when the MemberResource is called and if the UserResource should be returned, the details of that resource will be displayed in the memberable attribute.

Events

This package contains several events for which you can write a listener as follows

Event Description
MemberableResourceEvent This event is called after getting the memberable resource.
PersonableResourceEvent This event is called after getting the personable resource.
MembershipStoredEvent This event is called after storing a membership.
MembershipForgetEvent This event is called after forgetting a membership.
MembershipRenewEvent This event is called after renewing a membership.
MembershipUpdateExpiredAtEvent This event is called after updating the expiration date of a membership.
MembershipRemoveExpiredEvent This event is called after removing the expired memberships.

Contributing

Thank you for considering contributing to the Laravel Membership! The contribution guide can be found in the CONTRIBUTING.md.

License

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


All versions of laravel-membership with dependencies

PHP Build Version
Package Version
Requires php Version >=8.0.1
laravel/framework Version >=9.19
jobmetric/laravel-package-core Version ^1.7
spatie/laravel-query-builder Version ^5.7
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 jobmetric/laravel-membership contains the following files

Loading the files please wait ....