Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9cc7bfc

Browse files
authoredAug 12, 2024··
[FEATURE] Add directive to document settings (#700)
1 parent 1d8c726 commit 9cc7bfc

File tree

11 files changed

+1472
-28
lines changed

11 files changed

+1472
-28
lines changed
 

‎composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"symfony/clock": "^6.4",
1515
"symfony/finder": "^6.4",
1616
"symfony/http-client": "^6.4",
17+
"symfony/yaml": "^6.4",
1718
"t3docs/console-command": "^0.1.4",
1819
"t3docs/guides-php-domain": "^1.0"
1920
},

‎composer.lock

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

‎packages/typo3-docs-theme/resources/config/typo3-docs-theme.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
use T3Docs\Typo3DocsTheme\Directives\IncludeDirective;
2424
use T3Docs\Typo3DocsTheme\Directives\LiteralincludeDirective;
2525
use T3Docs\Typo3DocsTheme\Directives\RawDirective;
26+
use T3Docs\Typo3DocsTheme\Directives\SiteSetSettingsDirective;
2627
use T3Docs\Typo3DocsTheme\Directives\T3FieldListTableDirective;
2728
use T3Docs\Typo3DocsTheme\Directives\ViewHelperDirective;
2829
use T3Docs\Typo3DocsTheme\Directives\YoutubeDirective;
@@ -141,6 +142,7 @@
141142
->set(IncludeDirective::class)
142143
->set(LiteralincludeDirective::class)
143144
->set(RawDirective::class)
145+
->set(SiteSetSettingsDirective::class)
144146
->set(T3FieldListTableDirective::class)
145147
->set(ViewHelperDirective::class)
146148
->arg('$startingRule', service(DocumentRule::class))
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Please sign in to comment.