gitextract_mqtibipk/ ├── .github/ │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .htaccess ├── .php-cs-fixer.php ├── AGENTS.md ├── Dockerfile ├── LICENSE ├── README.md ├── composer.json ├── docker-compose.yml ├── google-exclude-1.txt ├── google-exclude-2.txt ├── google-exclude-3.txt ├── google-exclude-4.txt ├── google-exclude-5.txt ├── phpcs.xml ├── phpstan.neon ├── phpunit.xml ├── psalm.xml ├── referral-spam.caddy ├── referral-spam.caddy2 ├── referral-spam.conf ├── referral-spam.haproxy ├── referral-spam.lighttpd.conf ├── referral-spam.vcl ├── referral_spam.res ├── run.php ├── src/ │ ├── CLI/ │ │ └── CommandLineInterface.php │ ├── Config/ │ │ ├── AbstractConfigGenerator.php │ │ ├── ApacheConfigGenerator.php │ │ ├── CaddyConfigGenerator.php │ │ ├── CaddyV2ConfigGenerator.php │ │ ├── ConfigGeneratorInterface.php │ │ ├── GoogleAnalyticsConfigGenerator.php │ │ ├── HAProxyConfigGenerator.php │ │ ├── IISConfigGenerator.php │ │ ├── LighttpdConfigGenerator.php │ │ ├── MultiFileConfigGeneratorInterface.php │ │ ├── NginxConfigGenerator.php │ │ ├── UwsgiConfigGenerator.php │ │ └── VarnishConfigGenerator.php │ ├── Domain/ │ │ └── DomainProcessor.php │ ├── Generator.php │ ├── README.md │ ├── Service/ │ │ └── FileWriter.php │ └── domains.txt ├── tests/ │ ├── Integration/ │ │ └── .gitkeep │ └── Unit/ │ ├── Config/ │ │ └── ApacheConfigGeneratorTest.php │ ├── Domain/ │ │ └── DomainProcessorTest.php │ ├── GeneratorTest.php │ └── Service/ │ └── FileWriterTest.php └── web.config