I want to install the JSON extension as is mentioned in prerequisites to use People Api by Google. You can refer to the documentation. I've php7 installed on Ubuntu 16.04.
Asked
Active
Viewed 1.6k times
2 Answers
2
JSON support comes pre-compiled with current php versions you can check for installed php extensions with:
php -m
And to check which is installed for the current php versions use:
sudo dpkg --list | grep php | grep -i <extension_name>
George Udosen
- 37,534