2017 © Pedro Peláez
 

library gum

Map URLs to callbacks.

image

gum/gum

Map URLs to callbacks.

  • Wednesday, January 20, 2016
  • by staydecent
  • Repository
  • 2 Watchers
  • 24 Stars
  • 106 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 9 Versions
  • 1 % Grown

The README.md

Introduction

Gum is a base for rapid prototyping with PHP, providing an HTTP Router and Events system. Paired with a few other PHP Libraries, Gum let's you prototype your application, rapidly! Whoa.

Ignoring Best Practices

This ain't about purity, or convention or anything other than rapid-ness. So, you may not like the Singleton pattern or some other stuff—feel free to make an issue. But, just remember, rapid-ness takes priority., (*1)

Requires PHP 5.4 or higher

PHP 5.4 is now production ready. Does this mean Gum is ready for production?! No., (*2)

Hello…Universe?

true));
});

// If you need a route to be accessible to both GET and POST
// requests, use `request`. The callback will be fired in
// both cases.
Route::request('foobar', function() {
  echo "Foobar!";
});

// handle 404
if (Route::not_found()) {
  header('HTTP/1.0 404 Not Found');
  echo '404 Not Found';
  exit;
}
?>

Docs/Guides

The Versions

20/01 2016

dev-master

9999999-dev https://github.com/staydecent/Gum

Map URLs to callbacks.

  Sources   Download

public domain

routing microframework router map

20/01 2016

0.2.3

0.2.3.0 https://github.com/staydecent/Gum

Map URLs to callbacks.

  Sources   Download

public domain

routing microframework router map

19/01 2016

0.2.2

0.2.2.0 https://github.com/staydecent/Gum

Map URLs to callbacks.

  Sources   Download

public domain

routing microframework router map

06/12 2015

0.2.1

0.2.1.0 https://github.com/staydecent/Gum

Map URLs to callbacks.

  Sources   Download

public domain

routing microframework router map

06/12 2015

0.2.0

0.2.0.0 https://github.com/staydecent/Gum

Map URLs to callbacks.

  Sources   Download

public domain

routing microframework router map

28/04 2013

0.1.3

0.1.3.0 https://github.com/staydecent/Gum

Map URLs to callbacks.

  Sources   Download

public domain

routing microframework router map

13/04 2012

0.1.2

0.1.2.0 https://github.com/staydecent/Gum

Map URLs to callbacks.

  Sources   Download

public domain

routing microframework router map

13/04 2012

0.1.0

0.1.0.0 https://github.com/staydecent/Gum

Map URLs to callbacks.

  Sources   Download

public domain

The Requires

  • php >=5.4.0

 

routing microframework router map

13/04 2012

0.1.1

0.1.1.0 https://github.com/staydecent/Gum

Map URLs to callbacks.

  Sources   Download

public domain

The Requires

  • php >=5.4.0

 

routing microframework router map