├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── ray ├── box.json.dist ├── composer.json ├── docs └── options.md ├── scripts ├── build-phar.sh └── composer.json └── src ├── Options.php ├── RayCliCommand.php ├── UpdateChecker.php ├── UrlClient.php └── Utilities.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/permafrost-dev/ray-cli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/permafrost-dev/ray-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/permafrost-dev/ray-cli/HEAD/README.md -------------------------------------------------------------------------------- /bin/ray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/permafrost-dev/ray-cli/HEAD/bin/ray -------------------------------------------------------------------------------- /box.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/permafrost-dev/ray-cli/HEAD/box.json.dist -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/permafrost-dev/ray-cli/HEAD/composer.json -------------------------------------------------------------------------------- /docs/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/permafrost-dev/ray-cli/HEAD/docs/options.md -------------------------------------------------------------------------------- /scripts/build-phar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/permafrost-dev/ray-cli/HEAD/scripts/build-phar.sh -------------------------------------------------------------------------------- /scripts/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/permafrost-dev/ray-cli/HEAD/scripts/composer.json -------------------------------------------------------------------------------- /src/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/permafrost-dev/ray-cli/HEAD/src/Options.php -------------------------------------------------------------------------------- /src/RayCliCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/permafrost-dev/ray-cli/HEAD/src/RayCliCommand.php -------------------------------------------------------------------------------- /src/UpdateChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/permafrost-dev/ray-cli/HEAD/src/UpdateChecker.php -------------------------------------------------------------------------------- /src/UrlClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/permafrost-dev/ray-cli/HEAD/src/UrlClient.php -------------------------------------------------------------------------------- /src/Utilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/permafrost-dev/ray-cli/HEAD/src/Utilities.php --------------------------------------------------------------------------------