PHP Jet is a powerful PHP8 framework. Of course, it includes modularity / microservices / micro-app architecture, MVC architecture, ORM, REST API server and so on, but above all, it offers incredible performance, flexibility and freedom.
It is a modern framework that will help you, make your work very efficiently and not limit you.
It is a field-proven framework that has been developed for 12 years and practically used in various kinds of online applications and has recently been fully adapted to PHP8.
Framework places great emphasis not only on security and speed, but also on flexibility and adaptability.
PHP Jet is not only a library of classes, but includes integrated development tools such as Jet Profiler and Jet Studio, which make work incredibly efficient and easy.
This framework is developed for applications operated in the European Union. For this reason, it places great emphasis on the development of localizable and cross-border applications.
This is not a new experimental project, but a practically used and mature framework that leverages more than twenty years of experience with the development of online applications of the author of this framework.
Project website and documentation: https://www.php-jet.net/

PHP Jet is distributed as one package which includes everything:
All you have to do to try PHP Jet is:
You probably know how to create apache virtual. If not then check documentation.
PHP Jet needs nothing more thanmod_rewrite enabledto run with the Apache web server (see documentation of your system).
And watch out for a possible catch with the necessity to enable AllowOverride All!
If you are not familiar with NGINX server blocks then check out NGINX documentation.
To run Jet (or your projects already built on Jet), it is necessary to create such a server block.
Below you will find an example of how such a server block should look:
server {
listen 80;
listen [::]:80;
listen 443 ssl;
listen [::]:443 ssl;
ssl_certificate /etc/ssl/certs/ssl-cert-snakeoil.pem;
ssl_certificate_key /etc/ssl/private/ssl-cert-snakeoil.key;
server_name jet.lc;
root /home/user/projects/Jet;
index index.html;
location ~ /\.ht {
deny all;
}
location ~ ^/(css|js|images)/ {
try_files $uri $uri/ =404;
}
location / {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/application/bootstrap.php;
fastcgi_pass unix:/var/run/php/php8.0-fpm.sock;
}
location ~ ^/_tools/studio/(css|js|images)/ {
try_files $uri $uri/ =404;
}
location /_tools/studio/ {
include fastcgi_params;
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php8.0-fpm.sock;
}
}
Notes on the NGINX "server block":