Laravel Packages

Punchcard: Object Configs for Laravel

Published
Punchcard: Object Configs for Laravel image

Punchcard is a lazy and strict way to configure your Laravel projects.

On top of Laravel's configuration, this package provides fluent configuration classes with the following:

  • strict-typed configuration
  • autocomplete in IDEs
  • class-based arguments

Here's an example from the author's post, Introducing Punchcard - Object Configs for Laravel:

// config/view.php
use TomasVotruba\PunchCard\ViewConfig;
 
return ViewConfig::make()
->paths([__DIR__ . '/../resources/views'])
->compiled(__DIR__ . '/../storage/framework/views')
->toArray();

This package generates built-in Laravel configuration files. At the time of writing, the ViewConfig might look as follows:

namespace TomasVotruba\PunchCard;
 
class ViewConfig implements \Illuminate\Contracts\Support\Arrayable
{
/**
* @var string[]
*/
private array $paths = [];
 
private ?string $compiled = null;
 
public static function make(): self
{
$config = new self();
$config->paths([
resource_path('views'),
]);
$config->compiled(env('VIEW_COMPILED_PATH', realpath(storage_path('framework/views'))));
return $config;
}
 
/**
* @param string[] $paths
*/
public function paths(array $paths): self
{
$this->paths = $paths;
return $this;
}
 
public function compiled(string $compiled): self
{
$this->compiled = $compiled;
return $this;
}
 
/**
* @return array<string, mixed[]>
*/
public function toArray(): array
{
return [
'paths' => $this->paths,
'compiled' => $this->compiled,
];
}
}

This package was inspired by What about config builders? by Brent Roose. You can learn more about this package, get full installation instructions, and view the source code on GitHub.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
Agent Run Observability in Laravel AI SDK 0.11 image

Agent Run Observability in Laravel AI SDK 0.11

Read article
Debounced Queued Event Listeners in Laravel image

Debounced Queued Event Listeners in Laravel

Read article
Statamic Mailables Viewer Previews Laravel Emails in the Control Panel image

Statamic Mailables Viewer Previews Laravel Emails in the Control Panel

Read article
Laravel Tackle: Run an AI Coding Agent in Your Laravel App image

Laravel Tackle: Run an AI Coding Agent in Your Laravel App

Read article
Queue::forward(): Reroute Laravel Queues in One Place image

Queue::forward(): Reroute Laravel Queues in One Place

Read article
Laravel Read-Through Filesystem: Lazy Storage Migration image

Laravel Read-Through Filesystem: Lazy Storage Migration

Read article