Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 681 Bytes

readme.md

File metadata and controls

41 lines (32 loc) · 681 Bytes

Yiannis Christodoulou - Laravel Dokimes

This repo is just for my laravel tests.

INSTALLATION

STEP 1

composer require yiannis/dokimes --prefer-stable

STEP 2

Add the following to app/config/app.php

'providers' => [
    ...
    Yiannis\Dokimes\TestServiceProvider::class,  
    ...
]

and

'aliases' => [
    ...
    'SayHello' => Yiannis\Dokimes\SayHello::class,
    ...
]

STEP 3

php artisan vendor:publish --provider="Yiannis\Dokimes\TestServiceProvider"

HOW TO USE

@php
    echo SayHello::world()
@endphp

SUPPORT

Feel free to contact me at [email protected] if you have any questions or need any help with installation.