Download the PHP package railroad/usora without Composer

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

Usora

Usora is a user management system including auth, user settings, user information, and single sign on.

Single Sign On

How it Works

Users can be signed in on any domain running this package with a single login attempt from any of the domains as long as they are all connected to the same usora database. This is possible by setting authentication cookies on all participating domains after the login succeeds using html img tags.

API Reference

Get Index of Users

GET user/index

Request Example(s)

Request Parameters

path\ query\ body key required default description\ notes
query limit 25
query page 1
query order_by_column 'created_at'
query order_by_direction 'desc'

Response Example(s)

200 OK

Get Single User by ID

GET user/show/{id}

Request Example(s)

Request Parameters

path\ query\ body key required default description\ notes
path yes Id of the user to be returned

Response Example(s)

200 OK

Update User's Display Name

PUT user/update/{id}

Request Example(s)

Request Parameters

path\ query\ body key required default description\ notes
path yes user id
body display_name yes new display name to set

Response Example(s)

200 OK

(todo: the rest of the endpoints)

Get details from "USORA USER MANAGEMENT SYSTEM - JSON API" section of https://musora.readme.io/v1.0.0/reference

Events

Name Parameters Listener exists Resultant action(s)
UserEvent id, eventType no n/a
EmailChangeRequest token, email no n/a

EmailChangeRequest

Captures that an EmailChangeRequest was made.

Trigger exists in request method of EmailChangeController

No Listener exists.

UserEvent

Capture any user-account change.

Trigger exists in:...

  1. Both UserQuery* methods
    1. insertGetId (eventType param value: "created")
    2. update (eventType param value: "updated")
  2. All three UserFieldQuery* methods (eventType param value: "field-updated" in each)
    1. insertGetId
    2. update
    3. delete

*namespace for each is Railroad\Usora\Repositories\Queries

No listener exists.


The End.

All versions of usora with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
laravel/framework Version ^9.0
mikemclin/laravel-wp-password Version ~2.0.1
ext-redis Version *
railroad/doctrine Version 2.0.*
jms/serializer Version 1.*
railroad/permissions Version 2.0.*
php-open-source-saver/jwt-auth Version 1.4.*
spatie/laravel-fractal Version ^6.0
railroad/doctrine-array-hydrator Version 2.0.*
league/flysystem Version ^3.0
league/flysystem-aws-s3-v3 Version ^3.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 railroad/usora contains the following files

Loading the files please wait ....