PHP Classes

File: doc/0_intro.md

Recommend this page to a friend!
  Classes of Alexandre   PHP Commands   doc/0_intro.md   Download  
File: doc/0_intro.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: PHP Commands
Run commands for CLI programs using class packages
Author: By
Last change:
Date: 5 years ago
Size: 851 bytes
 

Contents

Class file image Download

Intro

What is this library ?

The "sitphp/commands" library can help you to create commands super easily for your application or your library. You can also use it to build your own customized command tool.

command showcase

Requirements

This library requires at least PHP 7. It should be installed from composer which will make sure your configuration matches requirements. > {.note .info} Note : You can get composer here : https://getcomposer.org.

    

Install

Once you have composer installed, add the "sitphp/commands": "1.0.*" line in the "require" section of your composer.json file :


{
    "require": {
        "sitphp/commands": "1.0.*"
    }
}

Then just run the following composer command to install the library :

composer update