My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Featured
Downloads
Wiki pages
Links

Welcome Developers!

Zend SDK includes a variety of tools that help you create, develop, publish and discover PHP Web applications. If you are new to the Zend SDK, please read an overview of how to set up the environment. If you're already using the Zend SDK, you should update to the latest one.

Platform Package Size SHA1 Checksum
Windows zend-sdk-cli-0.6.0-bin.zip

eclipse-php-3.0.2.zip *
3,230,367 bytes

92.6 MB
64ab9e25db26121c31c40db39195bbd3e4e66774

c057dbaf9f1b141e67fd1f40db2fdade983b3976
Linux zend-sdk-cli-0.6.0-bin.zip

eclipse-php-3.0.2-x86.tar.gz *

eclipse-php-3.0.2-x86_64.tar.gz *
3,230,367 bytes

91.7 MB

91.9 MB
64ab9e25db26121c31c40db39195bbd3e4e66774

9befcb890213209a17154fd52c64908f28280ef4

002fac47eb9380950979f0906e7ef45806327c0a
Mac OS X (intel) zend-sdk-cli-0.6.0-bin.zip

eclipse-php-3.0.2-Mac.tar.gz *
3,230,367 bytes

91.5 MB
64ab9e25db26121c31c40db39195bbd3e4e66774

f15ff81f099c385ef342d68e4918aaa422970b54

* - 'Zend Application Deployment Tools' also available as Eclipse Plugin

The "Hello, World" example below shows how to launch your first application with Zend SDK command line:

# clone an example project from a git repository
$ zend clone project -r https://ganoro@github.com/ganoro/ExampleProject.git

# define a target environment to host your application
$ zend add target -d <account-name>:<account-password>

# set working directory
$ cd ExampleProject

# deploy the newly created application to the defined target
$ zend deploy application 

In more details, we start by cloning an example project with the name 'ExampleProject' from a git repository (GitHub) and adding a target to host the application (alternatively detect your localhost target). This results in a fully deploy-able project, which includes a basic hello world Web interface along with basic deployment and manifest scripts which will be used for the deployment process.

The last command triggers the deployment process which deploys the application to the target.

Powered by Google Project Hosting