for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace MichaelRubel\LoopFunctions;
use Spatie\LaravelPackageTools\Package;
use Spatie\LaravelPackageTools\PackageServiceProvider;
class LoopFunctionServiceProvider extends PackageServiceProvider
{
/**
* Configure the package.
*
* @param Package $package
* @return void
*/
public function configurePackage(Package $package): void
$package
->name('laravel-loop-functions')
->hasConfigFile();
}