Skip to content

Simple, RESTful PHP web application framework inspired by GAE webapp and WSGI

License

Notifications You must be signed in to change notification settings

gcatlin/gossamer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SYNOPSIS
	Gossamer is a simple PHP web application framework inspired by WSGI.

INSTALLATION
	Download the source.

EXAMPLE
	<?php

	require '/path/to/gossamer/src/autoload.php';

	class MainPage extends RequestHandler {
		public function get() {
			$this->response->setHeader('Content-Type', 'text/plain');
			$this->response->write('Hello world!');
		}
	}

	$app = new WsgiApplication(array('/' => 'MainPage'));
	$app->run();


SIMILAR PROJECTS
	https://github.com/indeyets/appserver-in-php
	http://toroweb.org/
	http://www.konstrukt.dk/
	http://restfulchinchilla.com/
	http://www.recessframework.org/

About

Simple, RESTful PHP web application framework inspired by GAE webapp and WSGI

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages