Blame view

public/vendor/nesbot/carbon/bin/carbon 391 Bytes
86143e36f   Андрей Ларионов   Коммит вторник
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  #!/usr/bin/env php
  <?php
  
  use Carbon\Cli\Invoker;
  
  $dir = __DIR__.'/..';
  
  if (!file_exists($dir.'/autoload.php')) {
      $dir = __DIR__.'/../vendor';
  }
  
  if (!file_exists($dir.'/autoload.php')) {
      $dir = __DIR__.'/../../..';
  }
  
  if (!file_exists($dir.'/autoload.php')) {
      echo 'Autoload not found.';
      exit(1);
  }
  
  require $dir.'/autoload.php';
  
  exit((new Invoker())(...$argv) ? 0 : 1);