centos - Dependency problems between php 5.3 and php 5.6 -


originally had php 5.3 installed in centos machine (version 6.4) .. upgraded version of php 5.6 using these commands lines :

yum remove php-common yum install php56w yum install php56w-mysql yum install php56w-common yum install php56w-pdo yum install php56w-opcache 

actually when run php -v gives me : 5.6.

however when i'm trying install package php-devel:

sudo yum install php-devel --skip-broken 

it gives me :

packages skipped because of dependency problems:     php-5.3.3-47.el6.x86_64 base     php-cli-5.3.3-47.el6.x86_64 base     php-common-5.3.3-47.el6.x86_64 base     php-devel-5.3.3-47.el6.x86_64 base 

how may correct dependency problem ?

thanks

you should install 5.6 version of php-devel.

sudo yum install php56w-devel 

on link can see list of packages centos , php5.6 on "packages" section:

https://webtatic.com/packages/php56/


Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -