PHPackages                             rahisi/rahisi - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. rahisi/rahisi

ActiveProject

rahisi/rahisi
=============

v1.0.0(3y ago)06MITPHPPHP ^8.1.6

Since Apr 11Pushed 3y agoCompare

[ Source](https://github.com/php-rahisi/rahisi)[ Packagist](https://packagist.org/packages/rahisi/rahisi)[ RSS](/packages/rahisi-rahisi/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (4)Versions (3)Used By (0)

rahisi
======

[](#rahisi)

> php Rahisi Framework

-php framework eamed to siplify the process of creating customer projects (**Systems**)

Get Started
-----------

[](#get-started)

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

### installation

[](#installation)

-run

```
composer create-project rahisi/rahisi project-name

```

Running the tests
-----------------

[](#running-the-tests)

-Once you've completed these steps, you'll be good to go.

1.Routes
--------

[](#1routes)

-a "route" refers to the mapping of a URL (Uniform Resource Locator) to a specific function or handler that will be responsible for generating a response to that URL.

For example, let's say you're building a web application that has a homepage, a blog, and a contact page. You might define three different routes:

```
"/" (the root URL) maps to a function that generates the homepage.
"/blog" maps to a function that generates the blog page.
"/contact" maps to a function that generates the contact page.

```

When a user navigates to your website and enters a URL, your web application will look at the URL and determine which function to call based on the defined routes. The function then generates a response (HTML, JSON, etc.) that is sent back to the user's browser.

exaples

```
  Route::Get("routeName","controller");

```

-Route with Anonymous functions

```
