├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── bin └── global-ray ├── composer.json ├── dump-phar-generator ├── box.json ├── composer.json ├── index.php └── scoper.inc.php ├── dump-phars ├── dump_7.4.phar ├── dump_8.0.phar ├── dump_8.1.phar ├── dump_8.2.phar ├── dump_8.3.phar └── dump_8.4.phar ├── ray-phar-generator ├── box.json ├── composer.json ├── index.php └── scoper.inc.php ├── ray-phars ├── ray_php_7.4.phar ├── ray_php_8.0.phar ├── ray_php_8.1.phar ├── ray_php_8.2.phar ├── ray_php_8.3.phar └── ray_php_8.4.phar └── src ├── Commands ├── BuildCommand.php ├── ConfirmsPhpIniPath.php ├── InstallCommand.php ├── RetriesAsWindowsAdmin.php └── UninstallCommand.php ├── Support ├── Composer.php ├── Dump.php ├── PhpIni.php ├── Platform.php └── Ray.php └── scripts └── global-ray-loader.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/global-ray/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/global-ray/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/global-ray/HEAD/README.md -------------------------------------------------------------------------------- /bin/global-ray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/global-ray/HEAD/bin/global-ray -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/global-ray/HEAD/composer.json -------------------------------------------------------------------------------- /dump-phar-generator/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/global-ray/HEAD/dump-phar-generator/box.json -------------------------------------------------------------------------------- /dump-phar-generator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/global-ray/HEAD/dump-phar-generator/composer.json -------------------------------------------------------------------------------- /dump-phar-generator/index.php: -------------------------------------------------------------------------------- 1 |