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

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article