Update scssphp/scssphp once more
authorTim Düsterhus <duesterhus@woltlab.com>
Tue, 14 Dec 2021 09:41:32 +0000 (10:41 +0100)
committerTim Düsterhus <duesterhus@woltlab.com>
Tue, 14 Dec 2021 09:42:39 +0000 (10:42 +0100)
see aae76af2d247e67d4b812008805ca0f32014366f

wcfsetup/install/files/lib/system/api/composer.lock
wcfsetup/install/files/lib/system/api/composer/installed.json
wcfsetup/install/files/lib/system/api/composer/installed.php
wcfsetup/install/files/lib/system/api/scssphp/scssphp/src/Parser.php

index 04f06e3879e2d8f2520dfafa66e1627c129349f3..2db46cd698c183e1aa00274c2dc9a6a497360fe1 100644 (file)
             "source": {
                 "type": "git",
                 "url": "https://github.com/WoltLab/scssphp",
-                "reference": "6ea5a5429d9cf91c8d57a1756505356e54a27646"
+                "reference": "a4cb0d7758a48c71ae04f448d2ad3c5d97d73fc4"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/WoltLab/scssphp/zipball/6ea5a5429d9cf91c8d57a1756505356e54a27646",
-                "reference": "6ea5a5429d9cf91c8d57a1756505356e54a27646",
+                "url": "https://api.github.com/repos/WoltLab/scssphp/zipball/a4cb0d7758a48c71ae04f448d2ad3c5d97d73fc4",
+                "reference": "a4cb0d7758a48c71ae04f448d2ad3c5d97d73fc4",
                 "shasum": ""
             },
             "require": {
                 "scss",
                 "stylesheet"
             ],
-            "time": "2021-05-17T09:53:41+00:00"
+            "time": "2021-03-09T10:58:36+00:00"
         },
         {
             "name": "symfony/css-selector",
index 9daed8ed0104a9220aedd86c3716115927c97df6..e0fe5ee7f87a63d5df767f4cee2dc80495cf4423 100644 (file)
             "source": {
                 "type": "git",
                 "url": "https://github.com/WoltLab/scssphp",
-                "reference": "6ea5a5429d9cf91c8d57a1756505356e54a27646"
+                "reference": "a4cb0d7758a48c71ae04f448d2ad3c5d97d73fc4"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/WoltLab/scssphp/zipball/6ea5a5429d9cf91c8d57a1756505356e54a27646",
-                "reference": "6ea5a5429d9cf91c8d57a1756505356e54a27646",
+                "url": "https://api.github.com/repos/WoltLab/scssphp/zipball/a4cb0d7758a48c71ae04f448d2ad3c5d97d73fc4",
+                "reference": "a4cb0d7758a48c71ae04f448d2ad3c5d97d73fc4",
                 "shasum": ""
             },
             "require": {
                 "twbs/bootstrap": "~4.3",
                 "zurb/foundation": "~6.5"
             },
-            "time": "2021-05-17T09:53:41+00:00",
+            "time": "2021-03-09T10:58:36+00:00",
             "bin": [
                 "bin/pscss"
             ],
index e2cc6999cd62263a4d90f5e8b3eb2ee54ec8ef16..5e5e102d70325aff18ad0ef94055696e20033b9c 100644 (file)
             'type' => 'library',
             'install_path' => __DIR__ . '/../scssphp/scssphp',
             'aliases' => array(),
-            'reference' => '6ea5a5429d9cf91c8d57a1756505356e54a27646',
+            'reference' => 'a4cb0d7758a48c71ae04f448d2ad3c5d97d73fc4',
             'dev_requirement' => false,
         ),
         'symfony/css-selector' => array(
index 61eb1364a4a3db84a95c6e7713ad716350997950..e4620076065e7529f75c3c4663e48f5c475b6e09 100644 (file)
@@ -1187,7 +1187,7 @@ class Parser
         }
 
         $r = '/' . $regex . '/' . $this->patternModifiers;
-        $result = preg_match($r, $this->buffer, $out, null, $from);
+        $result = preg_match($r, $this->buffer, $out, 0, $from);
 
         return $result;
     }
@@ -1459,7 +1459,7 @@ class Parser
     {
         $r = '/' . $regex . '/' . $this->patternModifiers;
 
-        if (! preg_match($r, $this->buffer, $out, null, $this->count)) {
+        if (! preg_match($r, $this->buffer, $out, 0, $this->count)) {
             return false;
         }
 
@@ -1540,7 +1540,7 @@ class Parser
     {
         $gotWhite = false;
 
-        while (preg_match(static::$whitePattern, $this->buffer, $m, null, $this->count)) {
+        while (preg_match(static::$whitePattern, $this->buffer, $m, 0, $this->count)) {
             if (isset($m[1]) && empty($this->commentsSeen[$this->count])) {
                 // comment that are kept in the output CSS
                 $comment = [];
@@ -3303,7 +3303,7 @@ class Parser
         }
 
         // match comment hack
-        if (preg_match(static::$whitePattern, $this->buffer, $m, null, $this->count)) {
+        if (preg_match(static::$whitePattern, $this->buffer, $m, 0, $this->count)) {
             if (! empty($m[0])) {
                 $parts[] = $m[0];
                 $this->count += \strlen($m[0]);