2

I've installed zend-framework following the commands:

sudo add-apt-repository ppa:zend-framework/ppa
sudo apt-get update
sudo apt-get install zend-framework

zf.sh works but I was expecting the framework to be in /usr/local/Zend and there is nothing...

Where is it supposed to be?

Tim
  • 32,274
  • 27
  • 118
  • 177

1 Answers1

4

The Zend Framework library code is distributed in the libzend-framework-php package which is normally installed automatically as a dependency of the zend-framework package. The library code is installed in /usr/share/php/libzend-framework-php/Zend/ directory.

You can view listing of any installed package with command:

dpkg -L PACKAGE_NAME

(or use synaptic for GUI)

Anthony Geoghegan
  • 1,386
  • 14
  • 20