datado / slim
A bootstrapper for the Slim framework
1.2.3
2016-02-05 23:34 UTC
Requires
- datado/data: 1.1.6
- slim/slim: ^3.0
This package is not auto-updated.
Last update: 2024-11-09 18:59:26 UTC
README
Build a Slim framework rest api from your Repository
What is Slim?
Slim is a solid rest api framework that allows you to easily develop rest apis. You can find all you need to know at slimframework.com.
Usage
To use this bootstrapper you first need to add the composer dependency
composer require datado/slim
Then you create your repository more info here and attach it to your application.
$app = new \Slim\App; \DataDo\Slim::attach($app, $repository); // Or a shortcut if you are in a hurry $app = \DataDo\Slim::create($repository); // You can also pass multiple repositories at the same time $app = \DataDo\Slim::create($pageRepository, $fileRepository, $userRepository); // All you need to do now is start the app $app->run();
And now you're good to go!
Let's say your repository is hosting User entities. Then the above code will have created a rest api at /users
.