yiannis/dokimes

My laravel test composer project

1.0.5 2020-05-19 10:18 UTC

This package is auto-updated.

Last update: 2024-09-26 08:13:00 UTC


README

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 yiannis@web357.com if you have any questions or need any help with installation.