yiannis / dokimes
My laravel test composer project
Installs: 25
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^7.2
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.