QQ Quick Qommand.
Installs: 544
Dependents: 2
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 1
Open Issues: 0
Type:project
Requires
- php: ^7.2
- symfony/console: ^4.1
- symfony/dotenv: ^4.1
- symfony/framework-bundle: ^4.1
- symfony/monolog-bundle: ^3.3
- symfony/process: ^4.2
- symfony/yaml: ^4.1
- worldfactory/cookbook: >=0.2
- dev-master
- v2.1.4
- v2.1.3
- v2.1.2
- 2.1.1
- v2.1.0
- v2.0.0
- v1.6.10
- v1.6.9
- v1.6.8
- v1.6.7
- v1.6.6
- v1.6.5
- v1.6.4
- v1.6.3
- v1.6.2
- v1.6.1
- v1.6.0
- v1.5.0
- v1.4.4
- v1.4.3
- v1.4.2
- v1.4.1
- v1.4.0
- v1.3.2
- v1.3.1
- v1.3.0
- v1.2.9
- v1.2.8
- v1.2.7
- v1.2.6
- v1.2.5
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2.0
- v1.1.1
- v1.1.0
- v1.0.1
- v1.0.0
- dev-release-v1.6
This package is auto-updated.
Last update: 2025-04-04 18:48:20 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
- Introduction (this file)
- Installation
- Basic use
- Extend
- How to create a script ?
- Use command line arguments
- Runners and Runner options
- Using environment variables
- Recursive script configuration form
- How to use parameters ?
- Statements
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)