1

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.

Zanna
  • 72,312
naan
  • 163

2 Answers2

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
1

The JSON extension is bundled with PHP 5.2 and up. See here for more information.