QQ Quick Qommand.

Installs: 543

Dependents: 2

Suggesters: 0

Security: 0

Stars: 5

Watchers: 2

Forks: 1

Open Issues: 0

Type:project

v2.1.4 2020-11-04 09:04 UTC

README

QQ is a small software to save shortcuts of the commands you use the most during your developments.

Disclamer

Warning, QQ is not a library, QQ is a software in its own right. It can not be installed directly in your project, it must be installed at a lower level of your application.

Its purpose is to be the keystone of your development environment.

Documentation

Installation

Simply add QQ with Composer.

composer require worldfactory/qq

On Windows, the shortcut qq.bat will be automatically used.

However, on Linux, you will need to add the command alias qq=./qq.sh in your .bashrc file (or other) to make it easier for you to use qq.

Basic use

You will find at the root of your project a directory 'config' containing several files, including the file 'qq.yml' :

imports:
    - { resource: vendor/worldfactory/qq/resources/libs/docker.yml }
    - { resource: vendor/worldfactory/qq/resources/libs/composer.yml }
    - { resource: vendor/worldfactory/qq/resources/libs/symfony.yml }

commands:
    phpv:
        run: php -v
        shortDescription: Display PHP version.

phpv is a simple command to display your php cli version.

Test it by typing qq phpv in your console.

Type qq list to get all available commands.

Extend

You can add as many commands as you want as a result of phpv.

Use run parameters to indicate the cli command to execute.

Add a description with the shortDescription parameter.

Coming soon

  • Extends documentation
  • More information about development environment with QQ.
  • Many other improvements.

Trello development tab. (in french)