How To Install php-ZendFramework2-Mvc on CentOS 7
Introduction
In this tutorial we learn how to install php-ZendFramework2-Mvc
on CentOS 7.
What is php-ZendFramework2-Mvc
Zend\Mvc is a brand new MVC implementation designed from the ground up for Zend Framework 2, focusing on performance and flexibility. The MVC layer is built on top of the following components * Zend\ServiceManager - Zend Framework provides a set of default service definitions set up at Zend\Mvc\Service. The ServiceManager creates and configures your application instance and workflow. * Zend\EventManager - The MVC is event driven. This component is used everywhere from initial bootstrapping of the application, through returning response and request calls, to setting and retrieving routes and matched routes, as well as render views. * Zend\Http - specifically the request and response objects. * Zend\Stdlib\DispatchableInterface. All “controllers” are simply dispatchable objects.
We can use yum
or dnf
to install php-ZendFramework2-Mvc
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install php-ZendFramework2-Mvc.
Install php-ZendFramework2-Mvc on CentOS 7 Using yum
Update yum database with yum
using the following command.
After updating yum database, We can install php-ZendFramework2-Mvc
using yum
by running the following command:
Install php-ZendFramework2-Mvc on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf
using the following command.
After updating yum database, We can install php-ZendFramework2-Mvc
using dnf
by running the following command:
How To Uninstall php-ZendFramework2-Mvc on CentOS 7
To uninstall only the php-ZendFramework2-Mvc
package we can use the following command:
References
Summary
In this tutorial we learn how to install php-ZendFramework2-Mvc
on CentOS 7 using yum
and dnf
.