Download the PHP package jminayat/modules-laravel without Composer

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

JMinayaT Laravel - Modules

jminayat/modules-laravel is a package for the administration of your laravel application in modules. compatible with Laravel version 5.5 .

Installation

Install the package through the composer.

You need to load the module folder since it does not load automatically. You can autoload your modules using psr-4.

Edit main composer file, and add:

Do not forget to execute composer dump-autoload .

You can publish the Migrations.

After the migration has been published, you can create the table of modules by executing the migrations:

You can publish the Config file (it's optional).

When published, the config/modules.php Config file contains:

Usage

Creating A Module

To create a new module, simply run the following command:

To automatically add controller, model and migration when creating a new module use: -c -d -m

Folder Structure

Artisan Commands

Note that the command names use "test" as the name of the example module

module:active

activate | disable module, use true or false.

module:create

create a new module.

options

module:delete

delete module.

module:install

Install module from zip file.

module:list

show list of all modules.

module:make-controller

Create a new module controller.

module:make-middleware

Create a new module middleware class.

module:make-request

Create a new module request class.

module:make-model

Create a new module model.

options

module:make-migration

Create a new module migration.

module:make-seeder

Create a new module seeder class.

module:make-factory

Create a new module factory class.

module:make-test

Create a new module test class.

module:make-policy

Create a new module policy class.

module:publish

Publish module zip file.

module:up

Up config file module json.

module:migrate

Migrate database for all modules.

For migrate a specific module to use:

module:rollback

Rollback the last module database migration.

For rollback a specific module to use:

module:seed

Module Seed the database with records.

For seed a specific module to use:

Facade Methods

Get all modules.

Get a specific module.

Get all active modules.

Get all disabled modules.

Check the specified module. If it exists, will return true, otherwise false.

Count all modules.

Install a module using the zip file.

Migrate database the specified module.

Rollback database the specified module.

Migrate the database to all modules

Rollback database to all modules.

Module Methods

get entity from a specific module.

Get module name in studlycase.

Get the status of the module if it is active or disabled.

Enable the specified module.

Enable the specified module.

Delete the specified module.

Get module Path.

Get module Json file.

License

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


All versions of modules-laravel with dependencies

PHP Build Version
Package Version
Requires php Version ^7.0
chumper/zipper Version 1.0.x
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 jminayat/modules-laravel contains the following files

Loading the files please wait ....