Completed
Push — master ( 36b437...e61230 )
by Sebastian
03:40
created
build/phar-manifest.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
         "softlayer/objectstorage",
31 31
         "vlucas/phpdotenv"
32 32
     ])) {
33
-      continue;
33
+        continue;
34 34
     }
35 35
     echo $package->name . ': ' . $package->version;
36 36
     if (!preg_match('/^[v= ]*(([0-9]+)(\\.([0-9]+)(\\.([0-9]+)(-([0-9]+))?(-?([a-zA-Z-+][a-zA-Z0-9\\.\\-:]*)?)?)?)?)$/', $package->version)) {
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -9,16 +9,16 @@  discard block
 block discarded – undo
9 9
 } else {
10 10
     $branch = @exec('git rev-parse --abbrev-ref HEAD');
11 11
     $hash   = @exec('git log -1 --format="%H"');
12
-    echo $branch . '@' . $hash;
12
+    echo $branch.'@'.$hash;
13 13
 }
14 14
 echo PHP_EOL;
15 15
 
16
-$lock = json_decode(file_get_contents(__DIR__ . '/../composer.lock'));
16
+$lock = json_decode(file_get_contents(__DIR__.'/../composer.lock'));
17 17
 
18 18
 foreach ($lock->packages as $package) {
19
-    echo $package->name . ': ' . $package->version;
19
+    echo $package->name.': '.$package->version;
20 20
     if (!preg_match('/^[v= ]*(([0-9]+)(\\.([0-9]+)(\\.([0-9]+)(-([0-9]+))?(-?([a-zA-Z-+][a-zA-Z0-9\\.\\-:]*)?)?)?)?)$/', $package->version)) {
21
-        echo '@' . $package->source->reference;
21
+        echo '@'.$package->source->reference;
22 22
     }
23 23
     echo PHP_EOL;
24 24
 }
@@ -32,9 +32,9 @@  discard block
 block discarded – undo
32 32
     ])) {
33 33
       continue;
34 34
     }
35
-    echo $package->name . ': ' . $package->version;
35
+    echo $package->name.': '.$package->version;
36 36
     if (!preg_match('/^[v= ]*(([0-9]+)(\\.([0-9]+)(\\.([0-9]+)(-([0-9]+))?(-?([a-zA-Z-+][a-zA-Z0-9\\.\\-:]*)?)?)?)?)$/', $package->version)) {
37
-        echo '@' . $package->source->reference;
37
+        echo '@'.$package->source->reference;
38 38
     }
39 39
     echo PHP_EOL;
40 40
 }
Please login to merge, or discard this patch.