All Projects → aporat → zend-framework-rest-project-example

aporat / zend-framework-rest-project-example

Licence: other
Example project on using RESTful API with Zend Framework 1.11

Programming Languages

PHP
23972 projects - #3 most used programming language

README

This project provides a simple framework to serve RESTful functions using zend framework

Key Features

  • Authorization with 3scale based on app_id & app_key
  • XML & JSON friendly formatted responses

The project requires:

Setting Up Your VHOST

The following is a sample VHOST you might want to consider for your project.

<VirtualHost *:80>
   DocumentRoot "/var/www/zf-rest-example/public"
   ServerName api.yourdomain.com

   # This should be omitted in the production environment
   SetEnv APPLICATION_ENV development

   <Directory "/var/www/zf-rest-example/public">
       Options Indexes MultiViews FollowSymLinks
       AllowOverride All
       Order allow,deny
       Allow from all
   </Directory>

</VirtualHost>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].