From 435efece4affdd83167f033db8aa85a1f9bfd27f Mon Sep 17 00:00:00 2001 From: Pranjal Pandey Date: Fri, 18 Oct 2024 00:10:43 +0530 Subject: [PATCH] Create README.md --- README.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..24d51f6 --- /dev/null +++ b/README.md @@ -0,0 +1,39 @@ +
+ + +

Scrawler MVC

+ +GitHub Workflow Status + +[![Codecov](https://img.shields.io/codecov/c/gh/scrawler-labs/app?style=flat-square)](https://app.codecov.io/gh/scrawler-labs/app) +[![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/quality/g/scrawler-labs/app?style=flat-square)](https://scrutinizer-ci.com/g/scrawler-labs/app/?branch=main) +PHPStan Enabled +[![Packagist Version](https://img.shields.io/packagist/v/scrawler/app?style=flat-square)](https://packagist.org/packages/scrawler/app) +[![Packagist License](https://img.shields.io/packagist/l/scrawler/app?style=flat-square)](https://packagist.org/packages/scrawler/app) + +
+ +🔥Create simple but powerful web apps and APIs quickly, with minumum lines of code🔥
+🇮🇳 Made in India 🇮🇳 +
+ +## 💻 Installation +You can install Scrawler App via Composer. If you don't have composer installed , you can download composer from [here](https://getcomposer.org/download/) + +or if you want to start with an mvc template +```sh +composer create-project scrawler/mvc +``` + +## ✨ Folder Structure +- `assets`: your css and js assets live here +- `config`: global configuration files, you can add your own configurations here +- `storage`: app caches , file storage stays here +- `tests`: pest tests for your app lives here +- `src` + - `Controllers`: auto routed controller classes live here + - `views`: blade view files live here + - `boot.php`: boots the framework and register the required services , do not modify + - `app.php`: you can register your services and configuration here + - `routes.php`: manual routes can be added here if required +