Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Slim 4 Release #2769

Merged
merged 1 commit into from Aug 1, 2019
Merged

Slim 4 Release #2769

merged 1 commit into from Aug 1, 2019

Conversation

l0gicgate
Copy link
Member

@l0gicgate l0gicgate commented Aug 1, 2019

Slim 4.0.0 Release

We are excited to announce the Slim 4.0.0 release. Please direct all your feedback for this release to the Slim 4 Release Feedback Thread. The new docs are located here.

Build Status
Coverage Status

Supported PSR-7 Implementations CI Status

# PSR-7 Implementation Status
1 Slim PSR-7 Slim
2 Nyholm Nyholm
3 Guzzle Guzzle
4 Zend Zend

Note: Travis-CI is configured to be triggered automatically at least every 24 hours.

General Direction

For this major release the focus was on the following:

  • Implementing PSR-15 Middleware Support
  • Decoupling our dependency on Slim's PSR-7 implementation and enabling usage of any PSR-7 implementation
  • Decoupling our dependency on Pimple and enabling usage of any PSR-11 ContainerInterface implementation
  • Decoupling our dependency on FastRoute and implement interfaces enabling the user to use any routing library
  • Decoupling error handling from the core and enable users to easily use their own implementations
  • Decoupling response emitting from the core and enable users to easily use their own implementation
  • Remove all traits for a cleaner call stack trace when debugging
  • Create an app factory that makes it easier to create an App instance due to the higher complexity of the increased modularity

Major Changes

  • Slim requires PHP 7.1 or higher.
  • Slim no longer ships with a PSR-7 Implementation.
  • Slim no longer ships with Pimple.
  • Slim no longer sets the default_mimetype to an empty string, so you need to set it yourself in php.ini or your app using ini_set('default_mimetype', '').
  • Slim App::$settings have been removed, multiple middleware have been implemented to replace the functionality from each individual settings.
  • Routing is now done via the Slim\Middleware\RoutingMiddleware. By default routing will be performed last in the middleware queue. If you want to access the route and routingResults attributes from $request you will need to add this middleware last as it will get executed first within the queue when running the app. The middleware queue is still being executed in Last In First Out (LIFO) order. This replaces the determineRouteBeforeAppMiddleware setting.
  • Output buffering is now done via Slim\Middleware\OutputBufferingMiddleware. This replaces the outputBuffering setting.
  • Content length header calculation is now done via Slim\Middleware\ContentLengthMiddleware. This replaces the addContentLengthHeader setting.
  • The RouterInterface component has been split into 4 interfaces RouteCollectorInterface, RouteParserInterface, RouteResolverInterface and DispatcherInterface.
  • Double-Pass middleware has been deprecated. Middleware signature is now the PSR-15 MiddlewareInterface signature process(Request $request, RequestHandler $handler). We no longer support the double-pass function ($request, $response, $next) signature. You can still use callables with the signature function (Request $request, RequestHandler $handler) {} to create middleware or use an invokable class with that signature.
  • Slim App now implements the PSR-15 RequestHandlerInterface. Use $app->handle($request) instead of $app($request).
  • PSR-15 RequestHandler can now be used as route callables.
  • Binding of $app to the RouteGroup callable has been removed. RouteCollectorProxy gets injected into the RouteGroup's callable instead. $app->group('/group', function (RouteCollectorProxy $group) { $group->get(...); }
  • The App::subRequest() method has been removed. You can perform sub-requests via $app->handle($request) from within a route callable.
  • Removed SlimException. New HttpException have been implemented, namely HttpBadRequestException, HttpForbiddenException, HttpInternalServerErrorException, HttpMethodNotAllowedException, HttpNotFoundException, HttpNotImplementedException and HttpUnauthorizedException. You can also create your own by extending HttpException or HttpSpecializedException.
  • Request method names are now case-sensitive when user App::map().
  • All traits have been removed. CallableResolverTrait and MiddlewareAwareTrait no longer exist.
  • Two new factories have been introduced. AppFactory and ServerRequestCreatorFactory to facilitate App and ServerRequest creation. We currently support 4 PSR-7/ServerRequest creator combinations (Slim-Psr7, Nyholm PSR-7 & Nyholm PSR-7 Server, Guzzle PSR-7 and Guzzle HTTP Factory and Zend-Diactoros.

Changelog

4.0.0 - 2019-08-01

Added

  • #2765 Simplify queueing of internal middleware ErrorMiddleware and RoutingMiddleware
  • #2759 Add RouteContext to enable access to the current route, route parser, and routing results
  • #2751 Add ability to set default error renderer content type on the ErrorHandler component
  • #2737 BC Change via ErrorRendererInterface changed to use invokable pattern to leverage CallableResolver
  • #2734 Add support for content-type base error renderers and setting default error renderer
  • #2716 Add automatic Slim-Http Request/Response decoration when library is in scope
  • #2654 RouteParser::pathFor() and RouteParser::relativePathFor() are deprecated. Use RouteParser::urlFor() and RouteParser::relativeUrlFor()
  • #2642 Add AppFactory to enable PSR-7 implementation and ServerRequest creator auto-detection
  • #2641 Add RouteCollectorProxyInterface which extracts all the route mapping functionality from app into its own interface
  • #2640 Add RouteParserInterface and decouple FastRoute route parser entirely from core. The methods relativePathFor(), urlFor() and fullUrlFor() are now located on this interface
  • #2639 Add DispatcherInterface and decouple FastRoute dispatcher entirely from core. This enables us to swap out our router implementation for any other router
  • #2638 Add RouteCollector::fullUrlFor() to give the ability to generate fully qualified URLs
  • #2634 Added ability to set invocation strategy on a per-route basis
  • #2555 Added PSR-15 Middleware Support
  • #2529 Slim no longer ships with a PSR-7 implementation. You need to provide a PSR-7 ServerRequest and a PSR-17 ResponseFactory to run Slim
  • #2507 Method names are now case-sensitive in Router::map(), and so, by extension, in App::map()
  • #2497 PSR-15 RequestHandlers can now be used as route callables
  • #2496 A Slim App can now be used as PSR-15 Request Handler
  • #2405 RoutingMiddleware now adds the routingResults request attribute to hold the results of routing
  • #2404 Slim 4 requires PHP 7.1 or higher
  • #2425 Added $app->redirect()
  • #2398 Added Middleware\ErrorMiddleware
  • #2329 Added Middleware\MethodOverrideMiddleware
  • #2288 Separate routing from dispatching
  • #2254 Added Middleware\ContentLengthMiddleware
  • #2166 Added Middleware\OutputBufferingMiddleware

Deprecated

  • #2641 Deprecate RouteCollector::pushGroup(),RouteCollector::popGroup() which gets replaced by RouteCollector::group()
  • #2638 Deprecate RouteCollector::pathFor() which gets replaced by RouteCollector::urlFor() preserving the orignal functionality
  • #2555 Double-Pass Middleware Support has been deprecated

Removed

  • #2612 Remove Routable, refactored RouteGroup and Route interface
  • #2589 Remove App::$settings altogether
  • #2587 Remove Pimple as a dev-dependency
  • #2398 Slim no longer has error handling built into App. Add ErrorMiddleware() as the outermost middleware
  • #2375 Slim no longer sets the default_mimetype to an empty string, so you need to set it yourself in php.ini or your app using ini_set('default_mimetype', '');
  • #2288 determineRouteBeforeAppMiddleware setting is removed. Add RoutingMiddleware() where you need it now
  • #2254 addContentLengthHeader setting is removed
  • #2221 Slim\Http has been removed and Slim now depends on the separate Slim-Http component
  • #2166 outputBuffering setting is removed
  • #2078 Remove App::subRequest()
  • #2098 Remove CallableResolverTrait
  • #2102 Remove container from router
  • #2124 Remove Slim\Exception\SlimException
  • #2174 Switch from Container-Interop to PSR-11
  • #2290 Removed container. Set your own using App::setContainer()
  • #2560 Remove binding of $this to group()

Changed

  • #2104 Settings are the top level array elements in App::__construct()

Fixed

  • #2588 Fix file/directory permission handling of Router::setCacheFile()
  • #2067 Unit tests now pass on Windows systems
  • #2405 We rawurldecode() the path before passing to FastRoute, so UTF-8 characters in paths should now work

Step-By-Step Hello World


Step 1: Install Composer

Don't have Composer? It's easy to install by following the instructions on their download page.

Step 2: Install Slim

We recommend you install Slim with Composer.
Navigate into your project's root directory and execute the bash command
shown below. This command downloads the Slim Framework and its third-party
dependencies into your project's vendor/ directory.

composer require slim/slim:^4.0

Step 3: Install a PSR-7 Implementation and ServerRequest Creator

Before you can get up and running with Slim you will need to choose a PSR-7 implementation that best fits your application.
In order for auto-detection to work and enable you to use AppFactory::create() and App::run() without having to manually create a ServerRequest you need to install one of the following implementations:

Slim PSR-7

composer require slim/psr7

Nyholm PSR-7 and Nyholm PSR-7 Server

composer require nyholm/psr7 nyholm/psr7-server

Guzzle PSR-7 and Guzzle HTTP Factory

composer require guzzlehttp/psr7 http-interop/http-factory-guzzle

Zend Diactoros

composer require zendframework/zend-diactoros

Step 4: Hello World

<?php
use Psr\Http\Message\ResponseInterface as Response;
use Psr\Http\Message\ServerRequestInterface as Request;
use Slim\Factory\AppFactory;

require __DIR__ . '/../vendor/autoload.php';

$app = AppFactory::create();

$app->get('/', function (Request $request, Response $response, $args) {
    $response->getBody()->write('Hello world!');
    return $response;
});

$app->run();

Slim 4 DDD Skeleton

composer create-project slim/slim-skeleton [my-app-name]

Slim 4 MVC Skeleton

@adriansuter created an MVC skeleton. You can clone the skeleton and try it out:

git clone https://github.com/adriansuter/Slim4-Skeleton.git

@l0gicgate l0gicgate merged commit 54b2493 into slimphp:4.x Aug 1, 2019
@coveralls
Copy link

Coverage Status

Coverage remained the same at 100.0% when pulling 2b0ed80 on l0gicgate:4.x-Release into 0519869 on slimphp:4.x.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants