luoxiaojun1992/yii2-tinker

Yii2 Tinker

Installs: 51 570

Dependents: 0

Suggesters: 0

Security: 0

Stars: 18

Watchers: 3

Forks: 6

Open Issues: 1

Type:yii2-extension

v1.0.1 2021-01-04 03:16 UTC

This package is auto-updated.

Last update: 2024-04-05 09:53:05 UTC


README

Build Status

Features

A console debugger like laravel artisan tinker

  • REPL
  • Powerful Dumper

Installation

composer require "luoxiaojun1992/yii2-tinker:*"

Configuration

Don't need any configuration.

If the command doesn't work, add the following configuration manually.

config/console.php

...
$config = [
    ...
    'controllerMap' => [
        ...
        'tinker' => [ // Tinker command line.
            'class' => \Yii2Tinker\TinkerController::class,
        ],
        ...
    ],
    ...
];
...

Usage

execute ./yii tinker in your application's root folder

Example:

Psy Shell v0.8.1 (PHP 7.0.14 — cli) by Justin Hileman
>>> Yii::$app->params['adminEmail']
=> "admin@example.com"
>>> dd([1=>'a', 2=>'b', 3=>'c'])
array:3 [
  1 => "a"
  2 => "b"
  3 => "c"
]
>>>