"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",
"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"
],
'type' => 'library',
'install_path' => __DIR__ . '/../scssphp/scssphp',
'aliases' => array(),
- 'reference' => '6ea5a5429d9cf91c8d57a1756505356e54a27646',
+ 'reference' => 'a4cb0d7758a48c71ae04f448d2ad3c5d97d73fc4',
'dev_requirement' => false,
),
'symfony/css-selector' => array(
}
$r = '/' . $regex . '/' . $this->patternModifiers;
- $result = preg_match($r, $this->buffer, $out, null, $from);
+ $result = preg_match($r, $this->buffer, $out, 0, $from);
return $result;
}
{
$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;
}
{
$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 = [];
}
// 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]);