Download the PHP package kukuhkkh/laravel-command without Composer

On this page you can find all versions of the php package kukuhkkh/laravel-command. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-command

issues forks stars GitHub license

Laravel More Command

Laravel More Command is a collection of a few php artisan commands. You can use it to create a Repository, Repository with Interface, Service, Trait, View(blade file), and Clear Log from the command line using php artisan command.\
[Note : This package also worked for nWidart/laravel-modules]

Installation

Require the package with composer using the following command:

Or add the following to your composer.json's require-dev section and composer update

Artisan Command List

  1. Make Repository
  2. Make Service
  3. Make Trait
  4. Make View
  5. Log Clear


Make Repository

Create a repository Class.\ php artisan make:repository your-repository-name

Example:

or

The above will create a Repositories directory inside the App directory.\

Create a repository with Interface.\ php artisan make:repository your-repository-name -i

Example:

or

Here you need to put extra -i flag. The above will create a Repositories directory inside the App directory.

In nWidart/laravel-modules Modules

Create a repository Class.\ php artisan module:make-repository your-repository-name {module-name}

Example:

or

The above will create a Repositories directory inside the {Module} directory.

Create a repository with Interface.\ php artisan module:make-repository your-repository-name {module-name} -i

Example:

or

Here you need to put extra -i flag. The above will create a Repositories directory inside the {Module} directory. \

An Example of created repository class:


Make Service

Create a Service Class.\ php artisan make:service your-service-name

Example:

or

The above will create a Services directory inside the App directory.

In nWidart/laravel-modules Modules

php artisan module:make-service your-service-name {module-name}

Example:

or

The above will create a Services directory inside the {Module} directory.


Make Trait

Create a Trait.\ php artisan make:trait your-trait-name

Example:

or

The above will create a Traits directory inside the App directory.

In nWidart/laravel-modules Modules

php artisan module:make-trait your-trait-name {module-name}

Example:

or

The above will create a Traits directory inside the {Module} directory.


Make View

Create a view.\ php artisan make:view your-view-file-name

Example:

or

The above will create a blade file inside the /resource/views/ directory.

In nWidart/laravel-modules Modules

php artisan module:make-view your-view-file-name {module-name}

Example:

or

The above will create a blade file inside the {Module}/Resources/views/ directory.


Log Clear

php artisan log:clear

The above will deleted all old log data from /storage/logs/ directory.

License

The MIT License (MIT). Please see License for more information.


All versions of laravel-command with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package kukuhkkh/laravel-command contains the following files

Loading the files please wait ....