gitextract__7jf7qmp/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── config/ │ └── config.php ├── phpunit.xml.dist ├── src/ │ ├── Commands/ │ │ └── FakeIdSetupCommand.php │ ├── Facades/ │ │ └── FakeId.php │ ├── FakeIdServiceProvider.php │ └── RoutesWithFakeIds.php └── tests/ ├── Entities/ │ ├── Deletable.php │ ├── Fake.php │ ├── FakeWithRouteKeyName.php │ └── Real.php └── FakeIdTest.php