1. How to Implement a PHP Websocket Game to Make a Very Interactive Game Play
Updated on: 2021-07-22
Posted on: 2021-07-22
Blog: PHP Game of Three package blog
Package: PHP Game of Three
This package uses Websockets to provide a PHP-based implementation of the Three Game that is interactive, so the game works well without reloading the page when the player moves the pieces on the board.



1. How to Implement a PHP CLI Progress Indicator by Animating the Cursors While a PHP Task in Running
Updated on: 2021-07-21
Posted on: 2021-07-21
Blog: PHP CLI Spinner package blog
Package: PHP CLI Spinner
For console-based applications, usually, a cursor may appear blinking, but that does not give feedback on whether the current application is running well.
This package implements a better solution by showing the cursor changing its character, so it appears to be animated. This can give the users a better feeling by letting them know that the application is running.
The package implements a solution that uses a parallel process to animate the cursor character, so the application does not have to stop its main job to update the cursor animation.



1. How to Have a Laravel Pages Package to Create and Manage Web Pages for Each Object of Model Class
Updated on: 2021-07-20
Posted on: 2021-07-20
Blog: Laravel Pages Package package blog
Package: Laravel Pages Package
The pages' content and attributes need to be stored, for instance, in a database, so the users can update the pages any time they want.
This package provides a solution to manage content stored in a database using Laravel model classes. It also supports having multiple versions of the page text attributes for different languages.



1. How to Implement a Magento Server Setup For a Web Site That Does Not Need a Regular Web Server
Updated on: 2021-08-17
Posted on: 2021-07-19
Blog: Mage Developer package blog
Package: Mage Developer
This package can configure Magento to run using the PHP built-in Web server using a specific IP address and port.



1. How to Implement a PHP Multiple Database Connections Solution for Applications that Use Laravel
Updated on: 2021-07-15
Posted on: 2021-07-15
Blog: Laravel Multiple Database package blog
Package: Laravel Multiple Database
In some cases, it may be necessary to connect to more than one database to perform operations that require access to information that is not all in the same database.
This package provides code to demonstrates so developers can learn how to connect to multiple databases in the same Laravel application.



1. How to Implement a PHP Parallel Processing Solution that Can Start Many Scripts More Efficiently
Updated on: 2021-07-14
Posted on: 2021-07-14
Blog: PHP Async Executor package blog
Package: PHP Async Executor
To start faster, this package provides a solution that can start the parallel process first before creating the actual script that the process will run.



1. How Implement a PHP Case Converter to Adjust The Case of Text used in Template Parameters
Updated on: 2021-07-13
Posted on: 2021-07-13
Blog: PHP Case Converter for Twig package blog
Package: PHP Case Converter for Twig
This package provides a solution to implement case conversions of many types for values to be used to process templates using the Twig template engine.



1. How to Implement a Monitoring System That Checks Linux Native Resources to Detect Web Server Issues Quickly
Updated on: 2021-07-12
Posted on: 2021-07-12
Blog: PHP Network Monitor package blog
Package: PHP Network Monitor
This package implements a solution to monitor network connections on a given Linux server using the vnstat program or checking the system's virtual files related to network connections.



1. How to Perform PHP Matrix Operations Much Faster Using the PHP FFI Extension to Use Native C/C++ Libraries
Updated on: 2021-07-09
Posted on: 2021-07-09
Blog: Np PHP Matrix Class package blog
Package: Np PHP Matrix Class
Many of those calculations require a lot of processing. So when it is possible to perform those calculations in a lower-level programming language like C or C++, those calculations can be done much faster.
This package allows performing many types of matrix manipulation operations using libraries written in the C/C++ languages.
Then using the FFI extension, PHP applications can call those libraries to get much higher performance when doing those calculations than they could use pure PHP libraries.



1. How to Implement a PHP UML Diagram Generator to View Your Database Table Structure Very Quickly
Updated on: 2021-07-08
Posted on: 2021-07-08
Blog: DB Draw PHP UML Diagram Generator package blog
Package: DB Draw PHP UML Diagram Generator
One of those aspects is how the different types of objects manipulated in a software project are related to each other.
An entity-relationship diagram is meant to describe how entity objects are stored in a relational database.
This package can automatically create a UML entity-relationship diagram by connecting to a given database server and extracting the database structure of tables and their relations.
This allows developers to create documentation from an existing project database based on the standard for UML entity-relationship diagrams.


