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
- Host: GitHub
- URL: https://github.com/scrawler-labs/scrawler
- Owner: scrawler-labs
- License: mit
- Created: 2024-09-25T20:11:11.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-02-13T04:13:02.000Z (4 months ago)
- Last Synced: 2025-02-13T05:20:45.460Z (4 months ago)
- Topics: app, app-backend, container, fastapi, mvc, php-framework, php8, rest-api, restful, scrawler
- Language: PHP
- Homepage:
- Size: 181 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
![]()
Scrawler App
![]()
[](https://app.codecov.io/gh/scrawler-labs/app)
[](https://scrutinizer-ci.com/g/scrawler-labs/app/?branch=main)![]()
[](https://packagist.org/packages/scrawler/app)
[](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();
```