gitextract_ls_k7a7l/ ├── .doctrine-project.json ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── dependabot.yml │ └── workflows/ │ ├── coding-standards.yml │ ├── composer-lint.yml │ ├── continuous-integration.yml │ ├── release-on-milestone-closed.yml │ ├── static-analysis.yml │ └── website-schema.yml ├── .gitignore ├── LICENSE ├── README.md ├── UPGRADE.md ├── composer.json ├── docs/ │ └── en/ │ ├── dql-parser.rst │ ├── index.rst │ ├── sidebar.rst │ └── simple-parser-example.rst ├── phpcs.xml.dist ├── phpstan.neon.dist ├── phpunit.xml.dist ├── src/ │ ├── AbstractLexer.php │ └── Token.php └── tests/ ├── AbstractLexerTest.php ├── ConcreteLexer.php ├── EnumLexer.php ├── MutableLexer.php ├── TokenTest.php └── TokenType.php