Skip to content

Commit eb1b68d

Browse files
committed
doc: more information
1 parent 775577c commit eb1b68d

2 files changed

Lines changed: 39 additions & 3 deletions

File tree

README.md

Lines changed: 39 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# phpExpress [![HitCount](http://hits.dwyl.com/DevXian/https://githubcom/devxian96/phpExpress.svg)](http://hits.dwyl.com/DevXian/https://githubcom/devxian96/phpExpress)
2-
3-
Minimalist web framework for [PHP](https://www.php.net/)
1+
![logo](https://github.com/devxian96/phpExpress/blob/main/phpExpressLogo.png?raw=true)
42

53
[![GitHub stars](https://img.shields.io/github/stars/devxian96/phpExpress)](https://github.com/devxian96/phpExpress/stargazers)
64
[![GitHub forks](https://img.shields.io/github/forks/devxian96/phpExpress)](https://github.com/devxian96/phpExpress/network)
75
[![GitHub issues](https://img.shields.io/github/issues/devxian96/phpExpress)](https://github.com/devxian96/phpExpress/issues)
86
[![GitHub license](https://img.shields.io/github/license/devxian96/phpExpress)](https://github.com/devxian96/phpExpress/blob/main/LICENSE)
97

8+
> Minimalist RestAPI web framework for [PHP](https://www.php.net/), Affected by [Express](https://github.com/expressjs/express)
9+
1010
```php
1111
require 'phpExpress.php';
1212
$app = new phpExpress();
@@ -17,3 +17,39 @@ Minimalist web framework for [PHP](https://www.php.net/)
1717

1818
$app->listen();
1919
```
20+
21+
## Features
22+
23+
- Robust routing
24+
- Focus on high performance and Minimalist
25+
- HTTP helpers (redirection, caching, etc)
26+
- Support many headers
27+
- phpSequelize ORM, Affected by [Sequelize](https://github.com/sequelize/sequelize)
28+
29+
## Getting started
30+
31+
### Required
32+
33+
- php7 or higher
34+
35+
#### Standalone
36+
37+
```php
38+
require 'phpExpress.php';
39+
$app = new phpExpress();
40+
```
41+
42+
Now you ready to use it
43+
44+
#### Composer
45+
46+
```
47+
48+
```
49+
50+
I not ready this way yet.
51+
Coming soon.
52+
53+
## Examples
54+
55+
Please take a look at [Example](https://github.com/devxian96/phpExpress/tree/main/example) page.
File renamed without changes.

0 commit comments

Comments
 (0)