Download the PHP package mardira/mardira-framework without Composer

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

Mardira Logo

Mardira Framework is a PHP framework Model Controller Based for building web applications and APIs. It is designed to be simple, and fast.

Total Downloads Total Stars Total Forks Version License

Table of Contents

Requirements

Structure Folders

Installation

Setup

You can create a new project using composer

or you can clone this project

Clone

Then, install the dependencies using composer

or

Usage

Start Server

or

Create .env

You can create .env file using command

Create Controller

Create Model

Create Route

Create Migration

Run Migration

If database not exist, will automatically create database from .env

Refresh Migration

Refresh Migration With Seed

Create Seeder

Run Seeder

Run Seeder Specific

Create Authetication

Refresh Authetication

Update Framework Version

Controller

Create controller use php mardira make:controller ControllerName, here is example controller

to use controller, you can add route in App/Routes/Api.php

Response

You can use response in controller

return json expected

another response example 409

Model

Create model use php mardira make:model ModelName, here is example model

to use model, you can add model in App/Controllers/ControllerName.php

Migration

Create migration use php mardira make:migration create_table_table_name, here is example migration

Seeder

Create seeder use php mardira make:seeder SeederName, here is example seeder

Middleware

Create middleware use php mardira make:middleware MiddlewareName, here is example middleware

to use middleware, you can add middleware in route

Routing

You can add route in App/Routes/Api.php

Route Group

You can add route group in App/Routes/Api.php

Query Builder

Select

Where

Or Where

Where In

Where Not In

Where Null

Where Not Null

Order By

Join Table

Group By

Insert

Update

Delete

Count

Support

Reach out to me at one of the following places!


All versions of mardira-framework with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4
vlucas/phpdotenv Version ^5.5
firebase/php-jwt Version ^6.3
symfony/console Version 2.6.7
doctrine/inflector Version ^2.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 mardira/mardira-framework contains the following files

Loading the files please wait ....