gitextract_fljnwk0f/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── dependabot.yml │ └── workflows/ │ └── test-suite.yaml ├── .gitignore ├── .php-cs-fixer.dist.php ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── phpstan-ignores.neon ├── phpstan.neon.dist ├── phpunit.xml ├── src/ │ ├── Enums/ │ │ └── Compare.php │ ├── Exceptions/ │ │ └── InvalidVersionException.php │ ├── Support/ │ │ └── helpers.php │ ├── Traits/ │ │ ├── Comparable.php │ │ └── Incrementable.php │ └── Version.php └── tests/ └── VersionTest.php