How To Install php-doctrine-orm on Kali Linux
Introduction
In this tutorial we learn how to install php-doctrine-orm on Kali Linux.
What is php-doctrine-orm
php-doctrine-orm is:
Object-Relational-Mapper for PHP. Doctrine 2 is an object-relational mapper (ORM) for PHP that provides transparent persistence for PHP objects. It sits on top of a powerful database abstraction layer (DBAL). One of its key features is the option to write database queries in a proprietary object oriented SQL dialect called Doctrine Query Language (DQL), inspired by Hibernates HQL. This provides developers with a powerful alternative to SQL that maintains flexibility without requiring unnecessary code duplication.
The Doctrine Project provides several libraries primarily focused on database storage and object mapping.
There are three methods to install php-doctrine-orm on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install php-doctrine-orm Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install php-doctrine-orm using apt-get by running the following command:
sudo apt-get -y install php-doctrine-ormInstall php-doctrine-orm Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install php-doctrine-orm using apt by running the following command:
sudo apt -y install php-doctrine-ormInstall php-doctrine-orm Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install php-doctrine-orm using aptitude by running the following command:
sudo aptitude -y install php-doctrine-ormHow To Uninstall php-doctrine-orm on Kali Linux
To uninstall only the php-doctrine-orm package we can use the following command:
sudo apt-get remove php-doctrine-ormUninstall php-doctrine-orm And Its Dependencies
To uninstall php-doctrine-orm and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove php-doctrine-ormRemove php-doctrine-orm Configurations and Data
To remove php-doctrine-orm configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge php-doctrine-ormRemove php-doctrine-orm configuration, data, and all of its dependencies
We can use the following command to remove php-doctrine-orm configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge php-doctrine-ormDependencies
php-doctrine-orm have the following dependencies:
- php-mysql
- php-cli
- php-common
- php-doctrine-annotations
- php-doctrine-annotations
- php-doctrine-cache
- php-doctrine-cache
- php-doctrine-collections
- php-doctrine-collections
- php-doctrine-common
- php-doctrine-common
- php-doctrine-dbal
- php-doctrine-dbal
- php-doctrine-event-manager
- php-doctrine-event-manager
- php-doctrine-inflector
- php-doctrine-inflector
- php-doctrine-instantiator
- php-doctrine-instantiator
- php-doctrine-lexer
- php-doctrine-lexer
- php-doctrine-persistence
- php-doctrine-persistence
- php-symfony-console
References
Summary
In this tutorial we learn how to install php-doctrine-orm package on Kali Linux using different package management tools: apt, apt-get and aptitude.