Download the PHP package aminuddin12/insider-pack without Composer

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

A Powerfull Package



Short Information
A modular Laravel package to manage internal users (staff, admins, developers) separately from the public user system. It comes with its own authentication, profile management, roles & permissions, and a powerful documentation system.


About Insider Pack

InsiderPack is a local Laravel package, tailor-made for the Quanta application, providing a complete and isolated ecosystem for internal user management. Instead of mixing your staff and admin logic with your public-facing users, InsiderPack segregates it into its own modular and maintainable module.

This package introduces the "Insider" systemβ€”a completely separate user entity with its own tables, models, and authentication guard. This allows you to build complex back-office features or admin panels without interfering with your application's main user flow.

Key Features


Installation

This package is designed for a seamless setup process using its custom Artisan command.

  1. Require the Package Add the package to your main composer.json file and update your autoloader.

    • In your root composer.json, add the repository and require the package:

    • Run composer dump-autoload.
  2. Run the Install Command Execute the following command from your project's root directory. This single command will handle everything.

    This command will:

    • Publish the insiderpack.php configuration file.
    • Run all necessary database migrations.
    • Seed the database with default roles, permissions, and settings.
    • Clear relevant caches.

Configuration

After installation, a configuration file will be available at config/insiderpack.php.


<?php
return [
    'allow_registration' => env('INSIDER_ALLOW_REGISTRATION', false),
    'documentation_is_public' => env('DOCUMENTATION_IS_PUBLIC', true),
];

All versions of insider-pack with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
spatie/laravel-permission Version ^6.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 aminuddin12/insider-pack contains the following files

Loading the files please wait ...