If you are going to start building Zendframework
application you can start with ZendSkeletonApplication
Lets see how to install the ZendSkeletonApplication in your Mac
First you can go to the terminal and run the following command. You should have installed composer in your computer
composer create-project -s dev zendframework/skeleton-application helloworld
You can see the following folder structure in your project location
Next, I will use the php built-in server to run this skeleton-application. So I will run following command
php -S localhost:8000 -t public/
Now you can open the application on this url localhost:8000