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

serpapi logo
SerpApi

The Web Search API for Your LLM and AI Applications

Visit SerpApi

The latest

View all →
PayZephyr: One Payment API for Stripe, Paystack, and PayPal image

PayZephyr: One Payment API for Stripe, Paystack, and PayPal

Read article
Bifrost Turns One With AI Builds and New Workflows image

Bifrost Turns One With AI Builds and New Workflows

Read article
Preview Blade Templates in macOS Finder with Quick Blade image

Preview Blade Templates in macOS Finder with Quick Blade

Read article
Artisan Debugging Commands in Laravel Telescope 5.24.0 image

Artisan Debugging Commands in Laravel Telescope 5.24.0

Read article
Queue totalSize() and JobInterrupted Event in Laravel 13.31 image

Queue totalSize() and JobInterrupted Event in Laravel 13.31

Read article
Find Unexpected Test Inputs with Fuzz for Pest image

Find Unexpected Test Inputs with Fuzz for Pest

Read article