rackem / cgi
Run CGI-based applications with Rackem
Installs: 274
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/rackem/cgi
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-10-06 18:55:59 UTC
README
Use these to serve CGI compliant applications via Rack'em.
Example
return \Rackem::run(new \Rackem\Php(null, __DIR__));
This will serve the current directory as a PHP CGI application. The first parameter can be used to pass in a Rack'em application so you can also use this as a middleware.
Web Applications
This is a great way to run some PHP applications locally (for development), so I included a Rewritable
app to do just that.
return \Rackem::run(new \Rackem\Rewritable(null, __DIR__.'/wordpress'));
This will serve a Wordpress site that is located in ./wordpress/
The Rewritable class can also serve other web applications like Drupal etc.