2017 © Pedro Peláez
 

library console

Extra console application and/or command features

image

laradic/console

Extra console application and/or command features

  • Friday, January 26, 2018
  • by radic
  • Repository
  • 1 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Laradic Console

Source License Framework, (*1)

This package extends the default Laravel Console and adds several new features., (*2)

The package follows the FIG standards PSR-1, PSR-2, and PSR-4 to ensure a high level of interoperability between shared PHP code., (*3)

Installation

composer require "laradic/console:~1.0"

Quick Overview

Full documenation @ la.radic.nl, (*4)

There are 2 ways of using this package., (*5)

Command only

Command only means you only use the Laradic\Console\Command class, which is an extension of Illuminate\Console\Command with several improvements and additional features. It is possible to use this class to extend your own Commands from without needing to register the service provider or extend the Kernel., (*6)

Go to the Command documentation, (*7)

Full features

Beside using the Laradic\Console\Command for your commands, to enable full features it is required to extend your Console Kernel from the Laradic\Console\Kernel and register the Laradic\Console\ConsoleServiceProvider., (*8)

In most cases this means editing the app/Console/Kernel.php:, (*9)

namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
// change
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
// to
use Laradic\Console\Kernel as ConsoleKernel; 

class Kernel extends ConsoleKernel {}

And registering the Laradic\Console\ConsoleServiceProvider inside config/app.php, (*10)

The Versions

26/01 2018

dev-master

9999999-dev

Extra console application and/or command features

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel bootstrap console laradic

14/08 2016

1.0.0

1.0.0.0

laradic/console is a laravel package

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel bootstrap console laradic