Verifique este link se você quiser habilitar o php-cli no MAMP. Funcionou para mim bem limpa:)
A resposta que funcionou para mim: -
I had the same problem. Running MAMP on OS X Leopard Server. You need
to point the system path to the MAMP php whereas now it's trying to
use the default OS X install version issuing the command 'which php'
at this point should show '/usr/bin/php' but we want this to point to
our MAMP version instead
In terminal issue the following commands. This will rename the current
OS X php to php-old, then create a new symbolic link (NOT an alias!)
to the MAMP php version...
sudo mv /usr/bin/php usr/bin/php-old sudo ln -s
/Applications/MAMP/bin/php5.3/bin/php usr/bin/php
which php *should now output /Applications/MAMP/bin/php5.3/bin/ You
can now issue 'php -v' and you should see some output about the 5.3
version of php. Now the Kaltura install should see that php-cli is
running.
If that does not work however, you can also update the php PATH in
your user .profile with the following command: export
PATH=/Applications/MAMP/bin/php5.3/bin:$PATH
which php *should now output /Applications/MAMP/bin/php5.3/bin/