gitextract_yd6isbak/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── brew-issue.yml │ │ ├── config.yml │ │ ├── image-issue.yml │ │ └── warden-issue.yml │ ├── PULL_REQUEST_TEMPLATE/ │ │ ├── bugfix.md │ │ └── new-feature.md │ ├── pull_request_template.md │ └── stale.yml ├── .vscode/ │ └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TODO.md ├── bin/ │ └── warden ├── commands/ │ ├── blackfire.cmd │ ├── blackfire.help │ ├── db.cmd │ ├── db.help │ ├── debug.cmd │ ├── debug.help │ ├── doctor.cmd │ ├── doctor.help │ ├── env-init.cmd │ ├── env-init.help │ ├── env.cmd │ ├── env.help │ ├── install.cmd │ ├── redis.cmd │ ├── redis.help │ ├── shell.cmd │ ├── shell.help │ ├── sign-certificate.cmd │ ├── sign-certificate.help │ ├── spx.cmd │ ├── spx.help │ ├── status.cmd │ ├── status.help │ ├── svc.cmd │ ├── svc.help │ ├── sync.cmd │ ├── sync.help │ ├── usage.cmd │ ├── usage.help │ ├── valkey.cmd │ ├── valkey.help │ ├── version.cmd │ ├── vnc.cmd │ └── vnc.help ├── config/ │ ├── openssl/ │ │ ├── certificate.conf │ │ └── rootca.conf │ └── traefik/ │ └── traefik.yml ├── docker/ │ ├── docker-compose.dnsmasq.yml │ ├── docker-compose.mailpit.yml │ ├── docker-compose.phpmyadmin.yml │ ├── docker-compose.portainer.yml │ └── docker-compose.yml ├── environments/ │ ├── cakephp/ │ │ ├── cakephp.base.yml │ │ ├── cakephp.darwin.yml │ │ ├── cakephp.mutagen.yml │ │ ├── db.base.yml │ │ └── init.env │ ├── drupal/ │ │ ├── db.base.yml │ │ ├── drupal.base.yml │ │ ├── drupal.mutagen.yml │ │ ├── drupal.mutagen_compose.yml │ │ ├── drupal.settings.base.yml │ │ ├── init.env │ │ └── init.env.cmd │ ├── includes/ │ │ ├── allure.base.yml │ │ ├── blackfire.base.yml │ │ ├── blackfire.darwin.yml │ │ ├── blackfire.linux.yml │ │ ├── db.base.yml │ │ ├── elastichq.base.yml │ │ ├── elasticsearch.base.yml │ │ ├── networks.base.yml │ │ ├── nginx.base.yml │ │ ├── nginx.darwin.yml │ │ ├── opensearch.base.yml │ │ ├── php-fpm.base.yml │ │ ├── php-fpm.darwin.yml │ │ ├── php-fpm.linux.yml │ │ ├── php-spx.base.yml │ │ ├── rabbitmq.base.yml │ │ ├── redis.base.yml │ │ ├── selenium.base.yml │ │ ├── valkey.base.yml │ │ └── varnish.base.yml │ ├── laravel/ │ │ ├── db.base.yml │ │ ├── init.env │ │ └── laravel.base.yml │ ├── local/ │ │ └── local.base.yml │ ├── magento1/ │ │ ├── db.base.yml │ │ ├── init.env │ │ ├── magento1.base.yml │ │ ├── magento1.blackfire.mutagen_compose.yml │ │ ├── magento1.mutagen.yml │ │ └── magento1.mutagen_compose.yml │ ├── magento2/ │ │ ├── db.base.yml │ │ ├── init.env │ │ ├── magento2.base.yml │ │ ├── magento2.blackfire.mutagen_compose.yml │ │ ├── magento2.graphql-debug.base.yml │ │ ├── magento2.graphql.base.yml │ │ ├── magento2.graphql.darwin.yml │ │ ├── magento2.graphql.linux.yml │ │ ├── magento2.magepack.base.yml │ │ ├── magento2.magepack.linux.yml │ │ ├── magento2.magepack.mutagen_compose.yml │ │ ├── magento2.mutagen.yml │ │ ├── magento2.mutagen_compose.yml │ │ ├── magento2.splitdb.checkout.base.yml │ │ ├── magento2.splitdb.sales.base.yml │ │ └── magento2.tests.base.yml │ ├── shopware/ │ │ ├── db.base.yml │ │ ├── init.env │ │ ├── shopware.base.yml │ │ ├── shopware.mutagen.yml │ │ └── shopware.mutagen_compose.yml │ ├── symfony/ │ │ ├── db.base.yml │ │ ├── init.env │ │ └── symfony.base.yml │ └── wordpress/ │ ├── db.base.yml │ ├── init.env │ └── wordpress.base.yml ├── utils/ │ ├── core.sh │ ├── env.sh │ ├── install.sh │ └── svc.sh └── version