コード例 #1
0
 public function handle()
 {
     $client = new Client();
     $heisenbergInfo = json_decode($this->filesystem->read(".heisenberg"), true);
     $response = $client->get("https://api.github.com/repos/joecianflone/heisenberg-toolkit/releases/latest");
     $release = $response->json();
     if (version_compare($release['tag_name'], $heisenbergInfo['version'], '>')) {
         $this->info("Downloading & Extracting Files...");
         $package = $this->download->getPackage($this->option('dev'), $this->filesystem);
         Extractor::get($package, $this->download->getTempFolder());
         $this->info("Moving files into place...");
         $move = new Mover($this->filesystem, $this->download->getTempFolder(), $heisenbergInfo['path']['src'], $heisenbergInfo['path']['dest']);
         $move->files($this->option('dev'), $this->option('force'));
         $this->info("Cleanup...");
         Cleaner::clean($this->filesystem);
         if ($this->option("deps")) {
             $this->info("Update Dependencies, this may take a bit (or just not work) because NPM is terrible");
             Dependencies::load();
         }
         $this->info("All done, now");
         $this->info("Say. My. Name.");
     } else {
         $this->info("You're already running the latest");
     }
 }
コード例 #2
0
 public function handle()
 {
     $this->info("Downloading & Extracting Files...");
     $package = $this->download->getPackage($this->option('dev'), $this->filesystem);
     Extractor::get($package, $this->download->getTempFolder());
     $this->info("Moving files into place...");
     $move = new Mover($this->filesystem, $this->download->getTempFolder(), $this->argument("src"), $this->argument("dest"));
     $move->files($this->option('dev'), $this->option('force'));
     $this->info("Cleanup...");
     Cleaner::clean($this->filesystem);
     if ($this->option("deps")) {
         $this->info("Update Dependencies, this may take a bit");
         Dependencies::load();
     }
     $this->info("All done, now");
     $this->info("Say. My. Name.");
 }