Download the PHP package unknownrori/unknownrori-php without Composer

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

UnknownRori PHP

License: MIT GitHub repo size

Table of Contents

Overview

Rori-PHP is custom non production web application framework inspired by Laravel syntax and elegantness. A web framework provides a structure and starting point for your application allowing you to focus on creating something amazing.

Rori-PHP also come with CLI, type in terminal php cli.

Request Lifecycle Overview

First Step

The entry point for all request to Rori-PHP Application is in public/index.php, this file does not contain a lot of code, but rather loading a starting point for framework. this file will load server.php to load composer autoload.php and bootstrap.php in app, core and vendor directory.

Kernel

Next, the incoming request will be sent to Core\Kernel to check http request is requesting a web page or a resource.

HTTP Request & Route

Next, the request will be sent to Route to depending on type of the request, these Route serve as central location that all request will flow through, Runtime Middleware will be fired via Core\Support\Http\Middleware if the request is not a resource, if the request available in Routing, then Core\Support\Http\Route will fired the Controller Method.

Finishing

Lastly, after the client get the response the Runtime Middleware will fired for the second time, and we finished the request lifecycle!

Installation

Or using Composer

composer create-project unknownrori/unknownrori-php

Note : Master branch in this repository is used for development do not use this version for development of new website or something.


Requirement

Minimum

Recommended

Tested Database


Dependency

Usage

For usage please read this for more information, Or you can use the local documentation inside the Core/docs/usage.md.

Roadmap

Note

Q : Why you create this custom non production framework?

A : Because i want to polish my backend skill, documentation making, decision making, and of course code efficiency.


Q : Is this can be used in production.

A : You can use it, but i cannot guarantee the security.


Q : Can i use this for future my project?

A : Yea sure, if something goes wrong you can create issues, feedback encouraged.


Q : The framework name is so funny

A : Yea i am out of name idea.


All versions of unknownrori-php with dependencies

PHP Build Version
Package Version
Requires eftec/bladeone Version ^4.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 unknownrori/unknownrori-php contains the following files

Loading the files please wait ....