gitextract_zrbf4bwk/ ├── .deepsource.toml ├── .devcontainer/ │ ├── Dockerfile │ ├── devcontainer.json │ ├── first-run-notice.txt │ ├── on-create.sh │ └── post-create.sh ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ ├── question.md │ │ └── theme.md │ ├── dependabot.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── force-release.yml │ ├── phpunit-ci-coverage.yml │ ├── prettier.yml │ ├── release.yml │ └── translation-progress.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── Aptfile ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── composer.json ├── docs/ │ ├── faq.md │ └── themes.md ├── package.json ├── scripts/ │ └── translation-progress.php ├── src/ │ ├── cache.php │ ├── card.php │ ├── colors.php │ ├── demo/ │ │ ├── css/ │ │ │ ├── style.css │ │ │ └── toggle-dark.css │ │ ├── index.php │ │ ├── js/ │ │ │ ├── accordion.js │ │ │ ├── script.js │ │ │ └── toggle-dark.js │ │ └── preview.php │ ├── index.php │ ├── stats.php │ ├── themes.php │ ├── translations.php │ └── whitelist.php └── tests/ ├── CacheTest.php ├── OptionsTest.php ├── RenderTest.php ├── StatsTest.php ├── TranslationsTest.php └── phpunit/ └── phpunit.xml