Clear Composer Cache

Clear Composer Cache

Composer store copies of downloaded PHP packages in the cache. It allows speeding up workflow because for the next time previously installed packages can be retrieved from the cache. Can...
Enums in PHP 8.1

Enums in PHP 8.1

Since PHP 8.1, we can use enumerations also called enums. Enum defines a custom type that contains a fixed set of related values. Enum is declared using the enum keyword...