PHPenalva is a lightweight PHP micro-framework designed on the Model-View-Controller (MVC) architecture.
Built with simplicity in mind, PHPenalva empowers you to swiftly create APIs and web applications.
Note: This project is currently under construction. Please bear with us as we work to make it even better.
PHP Version: PHP 7.4 or higher is required.
Web Server: You'll need a web server with URL rewriting enabled.
Supported Servers: PHPenalva plays nicely with Apache, Nginx, and IIS.
Database Compatibility: PHPenalva is compatible with MySQL, MariaDB, PostgreSQL, and SQLite.
Platform: PHPenalva can be used on Linux, Windows, and macOS.
Getting started with PHPenalva is a breeze.
You can install it via Composer with the following command in your project directory:
composer create-project hiyan/phpenalva your_project_name
Here are some example routes that you can define in your PHPenalva application:
Route with views:
Route without views:
Authenticated Routes:
To use route authentication in PHPenalva, add 'auth' to your route definition. For example: $route[] = ['GET', '/posts', 'PostController@index', 'auth'];. To access an authenticated route, you must log in via the /api/login route. If you don't have an account, create one using /user/create. You can then log in to your account via /api/login. After logging in, you'll receive an access token. You can use this token to access authenticated routes. To do so, add the token to the Authorization header of your request. For example: Authorization: Bearer {token}. Replace {token} with the access token you received after logging in. You can also use the token as a query parameter. For example: /posts?token={token}. Replace {token} with the access token you received after logging in.
Our comprehensive documentation is readily available at {{TODO}}.
We're continually working on enhancing it to help you make the most of PHPenalva's features.
PHPenalva is an open-source project, and we warmly welcome contributions from the community.
Whether it's bug fixes, new features, or improvements, your input is valuable to us.
Please see our CONTRIBUTING.md for guidelines on how to contribute.
PHPenalva is released under the MIT License. For more details, please refer to the LICENSE file.
If you need any assistance or have questions, don't hesitate to reach out to us.
Thank you for choosing PHPenalva for your development needs! Enjoy coding with PHPenalva! 🚀🌐