├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CREDITS ├── LICENSE ├── README.md ├── config.w32 ├── examples ├── libs │ └── cliprogressbar.class.php └── progressbar.php ├── php_wcli.h ├── wcli.c ├── wcli.stub.php └── wcli_arginfo.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZmotriN/php-wcli/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZmotriN/php-wcli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Feel free to propose Pull Requests. 2 | -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | WCLI 2 | Maxime Larrivée-Roy -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZmotriN/php-wcli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZmotriN/php-wcli/HEAD/README.md -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZmotriN/php-wcli/HEAD/config.w32 -------------------------------------------------------------------------------- /examples/libs/cliprogressbar.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZmotriN/php-wcli/HEAD/examples/libs/cliprogressbar.class.php -------------------------------------------------------------------------------- /examples/progressbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZmotriN/php-wcli/HEAD/examples/progressbar.php -------------------------------------------------------------------------------- /php_wcli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZmotriN/php-wcli/HEAD/php_wcli.h -------------------------------------------------------------------------------- /wcli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZmotriN/php-wcli/HEAD/wcli.c -------------------------------------------------------------------------------- /wcli.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZmotriN/php-wcli/HEAD/wcli.stub.php -------------------------------------------------------------------------------- /wcli_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZmotriN/php-wcli/HEAD/wcli_arginfo.h --------------------------------------------------------------------------------