An open API service indexing awesome lists of open source software.

https://github.com/scrawler-labs/scrawler

Create simple but powerful web apps and APIs quickly, with minimum lines of code
https://github.com/scrawler-labs/scrawler

app app-backend container fastapi mvc php-framework php8 rest-api restful scrawler

Last synced: 4 months ago
JSON representation

Create simple but powerful web apps and APIs quickly, with minimum lines of code

Awesome Lists containing this project

README

        


Scrawler App

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/)

```sh
composer require scrawler/app
```

or if you want to start with an mvc template
```sh
composer create-project scrawler/mvc
```

## ✨ Basic usage
```php
get('/', function () {
return 'Hello World'
});

app()->run();
```

### Auto Routing
```php
autoRegister('/dir/of/controller','\\My\\Namespace')

app()->run();
```