Download the PHP package polidog/console without Composer

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

PHPでCommandを楽に開発するためのライブラリ

PHPで簡単なコマンドを実装したいときに便利です。 windowsの人は今すぐそのwindowsマシンにLinux入れるか、アップルストアでMacでも買ってください。

動作環境

php5.4以上
みなさん、php5.4使いましょうヽ(`・ω・´)ノ ウワァァン!

動かし方

examplesディレクトリの中を見てもらえれば解りますが、基本的には以下のような流れになります。

  1. オートローダーを設定する てかcomposer installとかすれば多分勝手にautoloder作られるよ!
  2. コマンドクラスのインスタンスを生成する
  3. executeする
  4. CLIで実行するときに使いたいコマンドのに合わせて引数を渡す

例:~/bin/command

#!/usr/bin/env php
<?php
    require('../vendor/autoload.php');
    $command = new Polidog\Console\Console($argv);
    $command->addPath(__DIR__.DIRECTORY_SEPARATOR.'Command2/');
    $command->execute();     

こんな感じのクラスがあったとします。 デフォルトでStringクラスがあるのでStringクラスを実行する事を考えます。

 polidog$ cd ~/bin
 polidog$ ./command string urlencode テスト!
 %E3%83%86%E3%82%B9%E3%83%88%21

って感じでurlencodeされた値が表示されます。

例えば、引数にurlencodeを指定しない場合、つまりクラス名しか指定していない場合は mainメソッドをオーバーライドしなければ、メソッド一覧がでる使用になっています。

polidog$ cd ~/bin
polidog$ ./command string
    base64  string 指定した文字列をbase64エンコードする
    urlencode   string URLエンコードをする
    urldecode   string URLデコードする
    unserialize string 指定したシリアライズされた配列を普通の配列に戻して出力する
    serialize   string 配列なシンタックスの文字列をシリアライズした値に変更する

ちなみに標準で搭載されている、listメソッドを使っても一覧を出す事が出来ます。

polidog$ ./command string list
    base64  string 指定した文字列をbase64エンコードする
    urlencode   string URLエンコードをする
    urldecode   string URLデコードする
    unserialize string 指定したシリアライズされた配列を普通の配列に戻して出力する
    serialize   string 配列なシンタックスの文字列をシリアライズした値に変更する

コマンドの拡張の仕方

拡張したいコマンド用クラスはどこに置いてもかまいません。 Consoleクラスが生成されたあとにaddPathで使用したいクラスのパスを追加することができます。 examplesのcommandファイルには以下のようなコードが記載されています。

$command->addPath(__DIR__.DIRECTORY_SEPARATOR.'Command2/');

これにより、examples/Command2いかのディレクトリにCommandAbstractを継承したクラスを用意しておけば、そのクラスを使用できます。 また、あたりまえですが、クラス名=ファイル名になっていないと利用できません。

で、例えばCommand2/には言ってるTestクラスを呼び出すときには以下のようにすればいいです

./command test
Hello extend command

これだけで、Command2にあるテストクラスが実行されます。


All versions of console with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
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 polidog/console contains the following files

Loading the files please wait ....