PHP code example of bbrothers / http-transitions

1. Go to this page and download the library: Download bbrothers/http-transitions library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

bbrothers / http-transitions example snippets


protected $middleware = [
    Transitions\TransitionMiddleware::class
];

Transitions\TransitionProvider::class

class NameToFirstNameLastNameTransition extends Transition
{

    public function transformResponse(Response $response) : Response
    {
        $content = json_decode($response->getContent(), true);
        $content = array_diff_key(array_merge($content, $content['name']), ['name' => true]);

        return $response->setContent(json_encode($content));
    }
}
bash
php artisan vendor:publish --provider="Transitions\TransitionProvider"
bash
$ php artisan make:transition NameToFirstNameLastNameTransition