Download the PHP package philiplambok/mikasa without Composer

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

Mikasa Framework

Packagist

Mikasa!

Mikasa Framework is A Simple MVC(Model View Controller) PHP Framework. Mikasa Framework is suitable with you who familiar with CodeIgniter or just new in this pattern.

Installation

You need to install xampp with >= php 5.6 and composer. The installation we have to option, you can just download or clone this repo.

or you can install with composer [Recomended]

or just download from stable releases

Usage

In MVC Pattern, you will familliar with Model (Class that interact with database), View (File that handle the UI) and Controller (Class that manage the logic and routing).

You can run the project using build in php server, with type this command :

That command will be running your code in localhost port 8000. You can open your browser and type to url box : http://localhost:8000

Controller

Here is an example of a basic controller.

All controller must be extends with class controller, and for using class controller you must use from namespace : use App\Core\Controller. Like i said first, in mikasa framework, controller will be manage the route like CodeIgniter, so on that code will be running in 'http://localhost:8000'. yeah index() method is the default method.

Model

If your program need some logic or interact to database, you can just create the model.

All model will be extends with Database class. To connection with database, you can using query method in db attr: $this->db->query("query").

Views

All views located in dir : App/Views. You can create some html file and show them with controller. If you need some data in database you just create the model.

Learning Resource


All versions of mikasa with dependencies

PHP Build Version
Package Version
No informations.
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 philiplambok/mikasa contains the following files

Loading the files please wait ....