Download the PHP package rhino-project/rhino-laravel without Composer

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

Rhino — Laravel

Automatic REST API generation for Laravel Eloquent models with built-in security, validation, and advanced querying.

PHP Version Laravel Version License: MIT

Register a model, get a full REST API instantly.

Features

# Feature Description
1 Automatic CRUD Endpoints Generates index, show, store, update, destroy for every registered model.
1a Configurable Route Key Match the {id} URL segment against any unique column on member endpoints (e.g. GET /api/jobs/{hash_id}) via public static string $routeKey = 'hash_id'; per model or a global route_key config. Defaults to the primary key.
2 Authentication Login, logout, password recovery/reset, invitation-based registration via Sanctum.
3 Authorization & Policies Convention-based permission checks ({slug}.{action}), wildcard support.
4 Role-Based Access Control Per-org roles via user_roles pivot table.
5 Attribute-Level Permissions Control which fields each role can read and write.
6 Validation Dual-layer: format rules + field presence. Supports role-keyed rules.
7 Cross-Tenant FK Validation exists: rules auto-scoped to current org, even through indirect FK relationships.
8 Filtering ?filter[field]=value with AND/OR logic.
9 Sorting ?sort=-created_at,title — ascending and descending.
10 Full-Text Search ?search=term across configured fields, supports relationship dot notation.
10a Named Scopes ?scope=name applies a model-whitelisted Eloquent named scope (with an optional $defaultScope); the current user is injected; non-whitelisted names return 403. Applies to index/trashed.
11 Pagination Header-based metadata (X-Current-Page, X-Last-Page, X-Per-Page, X-Total).
12 Field Selection ?fields[posts]=id,title,status to reduce payload.
13 Eager Loading ?include=user,comments with nested, Count/Exists suffixes, and auth per include.
14 Multi-Tenancy Organization-based data isolation, auto-set organization_id, global scope.
15 Nested Ownership Auto-detects org by walking BelongsTo chains.
16 Route Groups Multiple URL prefixes with different middleware/auth (tenant, public, custom).
17 Soft Deletes Trash, restore, force-delete endpoints with individual permissions.
18 Audit Trail Logs all CRUD events with old/new values, user, IP, and org context.
19 Nested Operations POST /nested for atomic multi-model transactions with $N.field references.
20 Invitations Token-based invite system with create, resend, cancel, accept, and role assignment.
21 Hidden Columns Base + model-level + policy-level dynamic column hiding per role.
22 Auto-Scope Discovery Auto-registers scopes by naming convention.
23 UUID Primary Keys HasUuid trait for auto-generated UUIDs.
24 Middleware Support Global per model + per action middleware.
25 Action Exclusion $exceptActions to disable specific CRUD routes.
26 Generator CLI rhino:install, rhino:generate, rhino:blueprint, rhino:export-postman.
27 Postman Export Auto-generated Postman Collection v2.1 with all endpoints.
28 Blueprint System YAML-to-code generation for models, migrations, factories, policies, tests, and seeders.

Quick Start

Documentation

For full documentation, guides, and API reference visit:

https://rhino-project.github.io/rhino-docs/docs/getting-started

License

MIT — see LICENSE for details.


All versions of rhino-laravel with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
spatie/laravel-query-builder Version ^6.2
symfony/yaml Version ^7.4
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 rhino-project/rhino-laravel contains the following files

Loading the files please wait ...