File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 53
53
uses : shivammathur/setup-php@v2
54
54
with :
55
55
php-version : ${{ matrix.php-version }}
56
+ ini-values : error_reporting=E_ALL
56
57
tools : composer:v2
57
58
coverage : " ${{ matrix.coverage }}"
58
59
60
+ - name : Show the Composer configuration
61
+ run : composer config --global --list
62
+
59
63
- name : Cache dependencies installed with composer
60
64
uses : actions/cache@v3
61
65
with :
@@ -108,6 +112,9 @@ jobs:
108
112
tools : " composer:v2, phive"
109
113
coverage : none
110
114
115
+ - name : Show the Composer configuration
116
+ run : composer config --global --list
117
+
111
118
- name : Cache dependencies installed with composer
112
119
uses : actions/cache@v3
113
120
with :
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phive xmlns =" https://phar.io/phive" >
3
- <phar name =" php-cs-fixer" version =" ^3.9.4 " installed =" 3.9.4 " location =" ./.phive/php-cs-fixer.phar" copy =" false" />
3
+ <phar name =" php-cs-fixer" version =" ^3.13.2 " installed =" 3.13.2 " location =" ./.phive/php-cs-fixer.phar" copy =" false" />
4
4
<phar name =" phpcbf" version =" ^3.7.1" installed =" 3.7.1" location =" ./.phive/phpcbf.phar" copy =" false" />
5
5
<phar name =" phpcs" version =" ^3.7.1" installed =" 3.7.1" location =" ./.phive/phpcs.phar" copy =" false" />
6
- <phar name =" phpstan" version =" ^1.8.1 " installed =" 1.8.1 " location =" ./.phive/phpstan.phar" copy =" false" />
6
+ <phar name =" phpstan" version =" ^1.9.14 " installed =" 1.9.14 " location =" ./.phive/phpstan.phar" copy =" false" />
7
7
</phive >
Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ $cssDocument = $parser->parse();
157
157
foreach($cssDocument->getAllRuleSets() as $oRuleSet) {
158
158
// Note that the added dash will make this remove all rules starting with
159
159
// `font-` (like `font-size`, `font-weight`, etc.) as well as a potential
160
- // `font-rule` .
160
+ // `font` rule .
161
161
$oRuleSet->removeRule('font-');
162
162
$oRuleSet->removeRule('cursor');
163
163
}
You can’t perform that action at this time.
0 commit comments