Download the PHP package wilokecom/phpcli without Composer

On this page you can find all versions of the php package wilokecom/phpcli. 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 phpcli

About Wiloke CLI

Wiloke CLI is a PHP-CLI tool that helps you easily setup phpunit and commonly used components

Installation

To install Wiloke CLI, please run the following command line:

composer require --dev wilokecom/phpcli

Setting up PHPUnit Test for WordPress

EXAMPLES

# Generate PHPUnit Test inside a plugin
./vendor/bin/wilokecli make:unittest plugins sample-plugin

# Generate PHPUnit Test inside a theme
./vendor/bin/wilokecli make:unittest themes sample-theme

SUBCOMMANDS

EXAMPLES With SUBCOMMANDS

./vendor/bin/wilokecli make:unittest plugins sample-plugin --homeurl=https://wiloke.com --rb=wiloke/v2 
--testnamespace=WilokeListingToolsTests --admin_username=admin --admin_password=admin --authpass=yourpass

(1): Define Unit Test testnamespace

{
    "autoload": {
        "psr-4": {
          "WilokeTests\\": "tests/"
        }
    },
}

Generating Post Skeleton

Example

./vendor/bin/wilokecli make:post-skeleton src --namespace=WilokeNamespace

src is a folder that you defined under autoload Psr-4 in composer.json.

{
    "autoload": {
        "psr-4": {
            "WilokeNamespace\\": "src/"
        }
    }
}

Generating Message Skeleton

Example

./vendor/bin/wilokecli make:message-factory src --namespace=WilokeNamespace

Generating Slack Post Message

Example

./vendor/bin/wilokecli make:slack-message src --namespace=WilokeNamespace

Generating Prefix

./vendor/bin/wilokecli make:prefix src --namespace=WilokeNamespace --prefixDefine=MY_PREFIX

Generating Upload

Chạy lần lượt các commend line sau

./vendor/bin/wilokecli make:prefix src --namespace=WilokeNamespace
./vendor/bin/wilokecli make:message-factory src --namespace=WilokeNamespace
./vendor/bin/wilokecli make:upload src --namespace=WilokeNamespace

Generating Query

./vendor/bin/wilokecli make:query --namespace=WilokeNamespace

Generating Shortcode Structure

Example

./vendor/bin/wilokecli make:shortcode MyShortcodeClass --namespace=WilokeNamespace

Generating Elementor

./vendor/bin/wilokecli make:elementor MyElementorClass --namespace=WilokeNamespace

Generating GrumPHP

Installing grumphp and php-cs-fixer

Run the following command line:
composer require phpro/grumphp friendsofphp/php-cs-fixer --dev
Or you can also add the following code to composer.json
"require-dev": {
    "phpro/grumphp": "^1.3",
    "friendsofphp/php-cs-fixer": "^2.17"
}
then run
composer update

Generating Wiloke grumphp configuration

./vendor/bin/wilokecli make:grumphp

All versions of phpcli 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 wilokecom/phpcli contains the following files

Loading the files please wait ....