Skip to content

yjgcwgg/Slim

 
 

Repository files navigation

Slim Framework

Build Status

Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs. Learn more at these links:

Install

Via Composer

$ composer require slim/slim

Requires PHP 5.4.0 or newer.

Usage

$app = new \Slim\App();
$app->get('/hello/{name}', function ($request, $response, $args) {
    $response->write("Hello, " . $args['name']);
    return $response;
});
$app->run();

Testing

phpunit

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email security@slimframework.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

Slim Framework source code

Resources

License

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • PHP 99.9%
  • ApacheConf 0.1%