Download the PHP package hiyan/phpenalva without Composer
On this page you can find all versions of the php package hiyan/phpenalva. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hiyan/phpenalva
More information about hiyan/phpenalva
Files in hiyan/phpenalva
Package phpenalva
Short Description PHPenalva is a micro php framework for building web applications and simple APIs.
License MIT
Informations about the package phpenalva
PHPenalva 𓅓
Overview
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.
Requirements
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.
Installation
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
Routes Example
Here are some example routes that you can define in your PHPenalva application:
Route with views:
Route without views:
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. ### Documentation 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. ### Contributing 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](CONTRIBUTING.md) for guidelines on how to contribute. ### License 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! 🚀🌐