Skip to content

Commit 74d8d44

Browse files
committed
Fix
1 parent 1a388e7 commit 74d8d44

File tree

3 files changed

+73
-2
lines changed

3 files changed

+73
-2
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,26 @@ jobs:
1818
steps:
1919
- name: "Checkout"
2020
uses: "actions/checkout@v4"
21+
2122
- name: "Get current date for the daily cache"
2223
id: "date"
2324
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
25+
2426
- name: "Cache the php documentation"
2527
id: cache-php-docs
2628
uses: "actions/cache@v4"
2729
with:
2830
path: "generator/docs"
2931
key: php-docs-${{ steps.date.outputs.date }}
32+
3033
- name: "Check out salathe/phpdoc-base"
3134
uses: "actions/checkout@v4"
3235
if: steps.cache-php-docs.outputs.cache-hit != 'true'
3336
with:
3437
path: "generator/docs/salathe/phpdoc-base"
3538
repository: "salathe/phpdoc-base"
3639
fetch-depth: 0
40+
3741
- name: "Check out php/doc-en"
3842
uses: "actions/checkout@v4"
3943
if: steps.cache-php-docs.outputs.cache-hit != 'true'

generator/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"phpstan/phpstan": "^2",
1515
"symfony/console": "^7",
1616
"symfony/process": "^7",
17-
"symfony/finder": "^7"
17+
"symfony/finder": "^7",
18+
"symfony/filesystem": "^7.2"
1819
},
1920
"require-dev": {
2021
"phpunit/phpunit": "^12",

generator/composer.lock

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

0 commit comments

Comments
 (0)