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
  • 69,223
  • 56
  • 216
  • 327
naan
  • 63
  • 1
  • 1
  • 6

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
  • 35,970
  • 13
  • 99
  • 121
1

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