Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tomasvotruba/punchcard

[Deprecated] Laravel 11 comes with simliar solution out of the box
https://github.com/tomasvotruba/punchcard

configuration laravel type-declarations

Last synced: 8 days ago
JSON representation

[Deprecated] Laravel 11 comes with simliar solution out of the box

Awesome Lists containing this project

README

        

# Lazy and strict way to configure Laravel project

I love Laravel, but I'm terrible at working with an array. I used the wrong keys and deleted the needed items, and my project kept crashing. So I did this project to help me with that.


## Installation

```bash
composer require tomasvotruba/punchcard
```


## Usage

This package provides basic fluent config classes for the Laravel project [`/config`](https://github.com/laravel/laravel/tree/10.x/config) directory.

You can use the right away after installing this package, e.g. in your `config/cache.php`:

```php
default(env('CACHE_DRIVER', 'file'))
->stores([
'array' => [
'driver' => 'array',
'serialize' => false,
],
])
->toArray();
```

The default configuration is used by default. You have to set values that are changed.


Happy coding!