scrawler / app
scrawler framework main app container
v2.4.1
2025-04-29 14:22 UTC
Requires
- phlak/config: ^8.0
- php-di/php-di: ^7.0
- scrawler/http: ^2.0
- scrawler/router: ^4.2
- vlucas/phpdotenv: ^5.6
Requires (Dev)
- pestphp/pest: ^3.2
- phpstan/phpstan: ^2.0
- rector/rector: ^2.0
- dev-main
- v2.4.1
- v2.4.0
- v2.3.4
- v2.3.3
- v2.3.2
- v2.3.1
- v2.3.0
- v2.2.4
- v2.2.3
- v2.1.4
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0
- v2.0.2
- v2.0.1
- v2.0.0
- v1.3.1
- v1.3.0
- v1.2.1
- v1.2.0
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-dependabot/composer/rector/rector-2.0.16
- dev-dependabot/composer/vlucas/phpdotenv-5.6.2
- dev-dependabot/composer/phpstan/phpstan-2.1.14
- dev-dependabot/composer/php-di/php-di-7.0.10
- dev-dependabot/composer/pestphp/pest-3.8.2
- dev-renovate/configure
This package is auto-updated.
Last update: 2025-05-16 16:00:46 UTC
README
🔥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
composer require scrawler/app
or if you want to start with an mvc template
composer create-project scrawler/mvc <project-name>
✨ Basic usage
<?php require __DIR__ . '/vendor/autoload.php'; app()->get('/', function () { return 'Hello World' }); app()->run();
Auto Routing
<?php require __DIR__ . '/vendor/autoload.php'; app()->autoRegister('/dir/of/controller','\\My\\Namespace') app()->run();