File tree Expand file tree Collapse file tree 1 file changed +16
-10
lines changed Expand file tree Collapse file tree 1 file changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -5,22 +5,28 @@ Simple PHP framework that helps you quickly understand and write simple APIs.
55
66Use the package manager [ composer] ( https://getcomposer.org/ ) to install required files
77
8+ Install dependencies
89``` bash
910composer install
1011```
11- 1 . Clone/download this folder to your computer.
12- 2 . create .env file
13- 3 . copy content from env-example to .env file
14- 4 . config .env file
15- 5 . Voila! Enjoy development.
1612
17- ## Usage
13+ ## Run Your Application With PHP’s Webserver
14+ Environment Variables
15+ ``` bash
16+ composer run env
17+ ```
1818
19- > ` cd public/ `
20- > ` php -S localhost:8080 `
19+ Go to the public directory
20+ ``` bash
21+ cd public
22+ ```
2123
22- ## Model
23- create name of model as same as name of table in database
24+ Start the server
25+
26+ ``` bash
27+ php -S localhost:8080
28+ ```
29+ Voila! Enjoy development.
2430
2531## Contributing
2632Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
You can’t perform that action at this time.
0 commit comments