feat: scaffold Symfony 8 with ITK Dev Docker setup#4
Open
martinyde wants to merge 8 commits into
Open
Conversation
Bootstrap the project with the symfony-8 ITK Dev Docker template and a fresh Symfony 8 application. Includes dev dependencies and configuration for the coding-standards CI workflows (composer-normalize, php-cs-fixer, twig-cs-fixer) and a README documenting local development. Refs #1 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Refs #1 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Collaborator
|
Task-type issue coverage Reviewed against open issues with type=Task in this repo. PR #4 covers:
Partially covered (leaving open):
Not covered by this PR (no action needed here): #5 (CLAUDE.md), #6 (.claude/settings.json), #9 (CONTRIBUTING), #11 (ADR structure), #29 (Taskfile). |
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
The Styles and JavaScript workflows trigger on docker-compose.yml
changes and then run prettier against assets/**/*.{css,scss,js},
failing when the directory is empty. Add minimal placeholder
entry files so CI passes until a real frontend stack is adopted.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
tuj
requested changes
Jun 6, 2026
| @@ -0,0 +1,826 @@ | |||
| <?php | |||
There was a problem hiding this comment.
This file should not be in git. Remove it and add it to gitignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
symfony-8ITK Dev Docker template (phpfpm 8.4, nginx, MariaDB, Mailpit, Traefik routing).symfony/skeleton:^8.0) with PSR-4App\autoload atsrc/.ergebnis/composer-normalize,friendsofphp/php-cs-fixer,vincentlanglet/twig-cs-fixer.README.mdwith local-development instructions and adds an initialCHANGELOG.md.name/descriptiontocomposer.jsonsocomposer validate --strictpasses, and gitignores.twig-cs-fixer.cache.Changes
bin/,config/,public/,src/,composer.json,composer.lock,symfony.lock,.env,.env.dev,.editorconfig,.gitignore.docker-compose.yml,docker-compose.dev.yml,docker-compose.redirect.yml,docker-compose.server.yml,.docker/nginx.conf,.docker/templates/default.conf.template,.github/workflows/*,.markdownlint.jsonc,.markdownlintignore,.php-cs-fixer.dist.php,.twig-cs-fixer.dist.php,.prettierrc.yaml.README.md(replaced),CHANGELOG.md.Testing
Local CI suite (matches the workflows under
.github/workflows/):itkdev-docker-compose composer validate --strict— OKitkdev-docker-compose composer normalize --dry-run— already normalizeditkdev-docker-compose composer audit— no advisoriesitkdev-docker-compose vendor/bin/php-cs-fixer fix --dry-run --diff— 0 of 5 files need fixingitkdev-docker-compose vendor/bin/twig-cs-fixer lint— 0 errors (no templates yet)docker compose --profile dev run --rm prettier '**/*.{yml,yaml}' --check— all matchdocker compose --profile dev run --rm markdownlint markdownlint '**/*.md'— cleanManual smoke test:
https://ai-lib.local.itkdev.dk/returns Symfony output (404 from the Symfony router — expected for an empty route map; not a Traefik/nginx error).Fixes #1
Closes #7