PHP Classes

File: .github/workflows/utilities/library-switcher

Recommend this page to a friend!
  Packages of Luke Towers   Winter   .github/workflows/utilities/library-switcher   Download  
File: .github/workflows/utilities/library-switcher
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Winter
Content management system that uses MVC
Author: By
Last change:
Date: 7 months ago
Size: 576 bytes
 

Contents

Class file image Download
#!/usr/bin/env php <?php /** * Storm library switch for CI * * Switches the version of the Storm library being required through Composer. The only argument is the branch or tag * to switch to. */ if (empty($argv[1])) { echo 'You must provide a version to switch the library dependency to.'; echo "\n"; exit(1); } $composer = json_decode(file_get_contents(getcwd() . '/composer.json'), true); $composer['require']['winter/storm'] = $argv[1]; file_put_contents(getcwd() . '/composer.json', json_encode($composer, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));