Download the PHP package vormiaphp/vormia without Composer

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

Vormia - Laravel Package

Packagist GitHub

Introduction

A comprehensive Laravel development package that streamlines media handling, notifications, and role management with a modular, maintainable approach.

VormiaPHP offers robust tools for handling media, managing notifications, and implementing essential features like user roles and permissions. The package is designed with a modular structure, separating concerns through dedicated namespaces for models, services, middleware, and traits.

Dependencies

Required Dependencies

The package will automatically check for required dependencies during installation and usage, and provide helpful error messages if they're missing.

Features

What's New in v4.3.0 🎉

✨ New Features

🔧 Improvements

🐛 Bug Fixes

📚 Documentation

Previous Version

Key Improvements

🔄 Uniform Meta Methods

All models now use consistent method names for managing meta data:

This eliminates confusion between different method names like setMetaValue vs setMeta across models.

🛡️ Database Dependency Protection

Service providers now gracefully handle scenarios where:

This prevents errors when cloning a project before running php artisan migrate.

🔐 API Authentication Middleware

New api-auth middleware for Sanctum-based API authentication:

Installation

Before installing Vormia, ensure you have Laravel installed. Note: Inertia is not yet supported.

Step 1: Install Laravel

OR Using Laravel Installer

Step 2: Install Vormia

Note: The MediaForge image processing functionality requires the intervention/image package. If you plan to use image processing features, install it with:

The installation process will check for this dependency and provide helpful warnings if it's missing.

Step 3: Run Vormia Installation

If you want API support, run:

Then, you must install Sanctum yourself:

This will install Laravel Sanctum and set up API authentication.

  1. If you see a message like:

then open bootstrap/app.php and add the above lines to the appropriate arrays.

open bootstrap/providers.php and add the above lines to the appropriate arrays.

  1. Configure your .env file as needed.

  2. Run migrations:

🟢 API-first Vormia version If you want to bootstrap your project with API support, use:

Then, install Sanctum manually:

Usage

Meta Data Management

All models with meta support now use uniform methods:

API Authentication

Use the new api-auth middleware for protected API routes:

Or apply to individual routes:

Uninstallation

  1. Run the uninstall command:

7. Troubleshooting Section

Common Issues

Database Connection Issues

Problem: Service providers throw database errors before migrations Solution: The package automatically handles this. Ensure migrations are run:

Meta Methods Not Working

Problem: setMeta() or getMeta() methods not found Solution: Ensure your models use the correct traits:

API Authentication Failing

Problem: 401 errors on protected routes Solution:

  1. Ensure Sanctum is installed: php artisan install:api
  2. Add HasApiTokens trait to User model
  3. Check middleware alias: 'api-auth' => \App\Http\Middleware\Vrm\ApiAuthenticate::class
Utilities Service Not Working

Problem: app('vrm.utilities')->type('public')->get('theme') returns unexpected results

Root Cause: There's a conceptual mismatch between table design and service implementation:

Solutions:

Debug Utilities:


All versions of vormia with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
laravel/framework Version ^12.0
intervention/image Version ^3.11
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 vormiaphp/vormia contains the following files

Loading the files please wait ....