Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs. Learn more at these links:
Via Composer
$ composer require slim/slimRequires PHP 5.4.0 or newer.
$app = new \Slim\App();
$app->get('/hello/{name}', function ($request, $response, $args) {
$response->write("Hello, " . $args['name']);
return $response;
});
$app->run();phpunitPlease see CONTRIBUTING for details.
If you discover any security related issues, please email security@slimframework.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.