rohitkumarinc / puniya-mvc
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/rohitkumarinc/puniya-mvc
Requires
- illuminate/container: ^10.48
- illuminate/database: ^10.48
- illuminate/events: ^10.48
- maximebf/debugbar: ^1.23
- vlucas/phpdotenv: ^5.6
This package is auto-updated.
Last update: 2026-01-17 11:44:18 UTC
README
Puniya MVC is a lightweight and modular PHP framework designed to facilitate the development of web applications using the MVC (Model-View-Controller) architecture. It aims to provide developers with a structured and efficient way to build dynamic web applications with ease.
Features
- MVC Architecture: Organizes your code into Models, Views, and Controllers for better separation of concerns.
- Routing: Simple and intuitive routing system to manage URL requests easily.
- Database Abstraction: Built-in support for database interactions using PDO for secure and efficient database queries.
- Template Engine: Lightweight templating engine to create dynamic HTML views.
- Error Handling: Comprehensive error handling for debugging and user-friendly error messages.
Installation
To install and set up Puniya MVC, follow these steps:
-
Create a new project using Composer:
composer create-project rohitkumarinc/puniya-mvc aaa --stability dev
-
Navigate to the project directory:
cd aaa -
Configure your database settings in the .env file.
-
Start your local development server:
php -S localhost:8000 -t public
-
Open your browser and visit http://localhost:8000 to see the application in action.