Merge branch 'V5-WIP' into unify_examples

This commit is contained in:
Julián Gutiérrez
2016-03-08 21:47:02 +01:00
106 changed files with 3172 additions and 4122 deletions

View File

@@ -11,7 +11,7 @@ use Psr\Http\Message\ServerRequestInterface;
use Slim\App;
use Zend\Diactoros\Stream;
include(__DIR__ . '/../vendor/autoload.php');
include __DIR__ . '/../vendor/autoload.php';
$app = new App([
'settings' => [
@@ -42,7 +42,7 @@ $app = new App([
);
return $server;
}
},
]);
$app->post('/access_token', function (ServerRequestInterface $request, ResponseInterface $response) use ($app) {