This repo is just for my laravel tests.
composer require yiannis/dokimes --prefer-stable
Add the following to app/config/app.php
'providers' => [
...
Yiannis\Dokimes\TestServiceProvider::class,
...
]
and
'aliases' => [
...
'SayHello' => Yiannis\Dokimes\SayHello::class,
...
]
php artisan vendor:publish --provider="Yiannis\Dokimes\TestServiceProvider"
@php
echo SayHello::world()
@endphp
Feel free to contact me at [email protected] if you have any questions or need any help with installation.