azuradara/illumake

A (mostly) typesafe Laravel container resolver.
8,774 5
Install
composer require azuradara/illumake
Latest Version:1.0.1
PHP:>=7.4
License:MIT
Last Updated:Oct 25, 2024
Links: GitHub  ·  Packagist
Maintainer: azuradara

Illumake

A (mostly) typesafe Laravel container resolver.

Usage

// Provides autocomplete for the DatabaseManager

make(\Illuminate\Database\DatabaseManager::class)
    ->transaction(fn () => {});

Limitations

  • Does not work with non class-strings.
  • Parameters second argument is not type hinted.

Why

Laravel's app()->make() gives me the ick.