Skip to content

Commit 902ccd8

Browse files
committed
Update tools
1 parent 0eab307 commit 902ccd8

File tree

13 files changed

+185
-193
lines changed

13 files changed

+185
-193
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Install PrettyPHP and its dependencies
4747
working-directory: tools/pretty-php
48-
run: composer install --no-interaction --no-progress
48+
run: composer install --no-interaction --no-progress --no-dev
4949

5050
- name: Check generated files
5151
run: scripts/generate.php --check

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Install ApiGen and its dependencies
4646
working-directory: tools/apigen
47-
run: composer install --no-interaction --no-progress
47+
run: composer install --no-interaction --no-progress --no-dev
4848

4949
- name: Run ApiGen
5050
run: tools/apigen/vendor/bin/apigen -c tools/apigen/apigen.neon --output .ci/docs/api --verbose

scripts/install-tools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ update-tools.sh)
3333
esac
3434

3535
for file in tools/*/composer.lock; do
36-
run-in-dir "${file%/*}" composer "$subcommand" --no-interaction --no-progress
36+
run-in-dir "${file%/*}" composer "$subcommand" --no-interaction --no-progress --no-dev
3737
done
3838

3939
for file in tools/*/package-lock.json; do

src/Utility/File.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ public static function writeCsv(
832832
}
833833

834834
if ($bom) {
835-
self::write($handle, '', null, $uri);
835+
self::write($handle, "\u{FEFF}", null, $uri);
836836
}
837837

838838
$count = 0;

tools/apigen/composer.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"require": {
3-
"php": "^8.1"
4-
},
5-
"require-dev": {
3+
"php": "^8.2",
64
"apigen/apigen": "^7@alpha"
75
},
86
"autoload": {
@@ -12,7 +10,7 @@
1210
},
1311
"config": {
1412
"platform": {
15-
"php": "8.1.2"
13+
"php": "8.2.4"
1614
}
1715
}
1816
}

tools/apigen/composer.lock

Lines changed: 34 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/changelog/composer.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
{
22
"require": {
3-
"php": "^8.1"
4-
},
5-
"require-dev": {
6-
"salient/changelog": "^0.1"
3+
"php": "^8.2",
4+
"salient/changelog": "^1.0"
75
},
86
"config": {
97
"platform": {
10-
"php": "8.1.2"
8+
"php": "8.2.4"
119
}
1210
}
1311
}

tools/changelog/composer.lock

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)