PHP code example of raphhh / puppy

1. Go to this page and download the library: Download raphhh/puppy 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/ */

    

raphhh / puppy example snippets


// config/local.php

return [
    'baseUrl' => '/puppy/public/', //use only an absolute path
];

$application->post('contact', function(){ 
    ...
});

//if the form is not filled, we display the form with the error
return $staticController->render([
    'text-danger' => 'Form not filled'
]);

//if the email is send, we redirect to avoid F5.
return $staticController->redirect([
    'text-info' => 'Email sent'
]);

$application->get('hello', function(){ 
    return 'Hello world!';
});

$application->addService('serviceName', function(Container $services){
    return new MyService();
});

$application->after(function(Response $response){
    ...
});