Stars: 669
Forks: 63
Pull Requests: 174
Issues: 153
Watchers: 23
Last Updated: 2023-06-18 14:46:11
Ubiquity framework
License: Apache License 2.0
Languages: PHP, HTML, JavaScript, CSS, Shell
Ubiquity, a powerful and fast framework for efficient design.
If Ubiquity devtools are already globally installed, and you want to upgrade to the lastest stable version:
composer global update
For an existing project (in the root folder):
composer update
The easiest way to create a project is to use composer create-project command:
Creation of the project firstProject
composer create-project phpmv/ubiquity-project firstProject
This installation adds devtools and webtools to the project.
vendor/bin/Ubiquity serve
http://127.0.0.1:8090/Admin
It is also possible to install devtools globally, to share their use between different projects, and to get more options for a project creation.
composer global require phpmv/ubiquity-devtools
Ubiquity new firstProject -a
Ubiquity serve
Ubiquity is a recent project and does not yet have a large community. In the meantime, you can consult:
For further assistance please feel free to :
Ubiquity is very fast and performs well.
The various results of the Techempower benchmarks show this conclusively.
These excellent results have also been confirmed by an independent benchmark site : phpbenchmarks.com
Ubiquity is optimized for use with asynchronous platforms (Workerman and Swoole). It takes advantage of the recent PHP evolutions (opCache management and preloading). In this context, it performs against the fastest Frameworks written in C, C++, Rust or java:
(*) Only tests with Framework and ORM are considered.
Ubiquity was created in April 2017.
The project tries to simplify the development process, and empowers web developers who delivering value through their applications. It aims to combine performance and ease of handling.
This dual purpose has led to some design choices:
Get inspired by the best practices and successful concepts from other frameworks, but do not try to reproduce things that are not a part of the logic of PHP.
Some PHP frameworks were inspired by the Java world, which has contributed to more professional php development. But java is not PHP : the environments and languages are completely different (though their syntax is similar). What is good in Java is not necessarily in PHP.
Ubiquity wants to keep the essence of PHP and what it does best, for example:
Overall, Ubiquity wants to keep and use what PHP is good at.
In this perspective, Ubiquity chooses not to respect certain standards: For example, by not creating a Response object implementing an interface (see PSR-7 HTTP message interfaces ) in response to an Http request.
Not multiplying the ways of doing things.
If a method or technique is optimal, there's no reason to implement an alternative version, especially if there is a risk of degrading the performance or complicating the handling of the framework.
Avoiding multiple external dependencies, which are sometimes loaded when they are never used.
The framework used must give the developer the means to optimize his application and not the other way around.
Ubiquity aspires to never become another labyrinthine system.
Ubiquity help
The console mode makes it easy to perform all the repetitive tasks related to the design of projects:
Generation of the CRUD elements for a model class with devtools :
Ubiquity crud --resource=Developers --path=/devs/
The generated route /devs/ provides an entry point for CRUD operations:
Like the console, the administration interface makes it possible to act on the main components of the framework.
When creating a project, it can be installed with the -a option.
ubiquity new firstProject -a
You can tell us your pleasure in using Ubiquity, giving us a star, and you can do even better by contributing...
Thank you!