Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions .github/workflows/docs-build-try.yml

This file was deleted.

93 changes: 0 additions & 93 deletions .github/workflows/docs-build.yml

This file was deleted.

8 changes: 0 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,6 @@ test: phpunit
.PHONY: dev
dev: static test ## run dev tools

.PHONY: docs
docs: mkdocs ## run mkdocs
cd docs && python3 -m mkdocs serve

.PHONY: mkdocs
mkdocs: ## run mkdocs
cd docs && pip3 install -r requirements.txt

.PHONY: docs-extract-php
docs-extract-php:
bin/docs-extract-php-code
Expand Down
2 changes: 1 addition & 1 deletion bin/docs-extract-php-code
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (file_exists($targetDir)) {
mkdir($targetDir);

$finder = new Symfony\Component\Finder\Finder();
$finder->files()->in(__DIR__ . '/../docs/pages')->name('*.md');
$finder->files()->in(__DIR__ . '/../docs')->name('*.md');

foreach ($finder as $file) {
$fileName = pathinfo($file->getBasename(), PATHINFO_FILENAME);
Expand Down
2 changes: 1 addition & 1 deletion bin/docs-inject-php-code
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if (!file_exists($targetDir)) {
}

$finder = new Symfony\Component\Finder\Finder();
$finder->files()->in(__DIR__ . '/../docs/pages')->name('*.md');
$finder->files()->in(__DIR__ . '/../docs')->name('*.md');

foreach ($finder as $file) {
$fileName = pathinfo($file->getBasename(), PATHINFO_FILENAME);
Expand Down
Loading
Loading