limenet / laravel-baseline
A highly opinionated Laravel baseline.
Fund package maintenance!
Requires
- php: ^8.3
- ext-simplexml: *
- composer/semver: ^3.4
- illuminate/contracts: ^12.0 || ^13.0
- laravel/prompts: ^0.3 || ^1.0
- nesbot/carbon: ^3.0
- nikic/php-parser: ^5.7
- phpstan/phpstan: ^2.1.40
- rector/rector: ^2.3.8
- spatie/laravel-package-tools: ^1.93
- symfony/finder: ^7.4 || ^8.0
- symfony/yaml: ^7.4 || ^8.0
Requires (Dev)
- larastan/larastan: ^3.10.0
- laravel/framework: ^12.53.0 || ^13.25.0
- laravel/pint: ^1.30.5
- mockery/mockery: ^1.6.13
- nunomaduro/collision: ^8.9.5
- orchestra/testbench: ^10.9.0 || ^11.2
- pestphp/pest: ^4.7.7 || ^5.1.1
- pestphp/pest-plugin-arch: ^4.0.2 || ^5.0.0
- pestphp/pest-plugin-laravel: ^4.1 || ^5.0.1
- phpstan/extension-installer: ^1.4.3
- phpstan/phpstan-deprecation-rules: ^2.0.5
- phpstan/phpstan-phpunit: ^2.0.18
- spatie/laravel-health: ^1.40.2
- spatie/temporary-directory: ^2.4.0
- symplify/rule-doc-generator-contracts: ^11.2
Conflicts
- laravel/boost: ^1.0
This package is auto-updated.
Last update: 2026-08-28 15:48:20 UTC
README
Checks your Laravel installation against a highly opinionated baseline.
This repository ships two runners from one policy:
| Composer | npm | |
|---|---|---|
| Package | limenet/laravel-baseline |
@limenet-ch/baseline |
| For | Laravel projects (DDEV, composer) | JS/TS-only projects (no PHP, no DDEV) |
| Command | php artisan limenet:laravel-baseline:check |
npx baseline check |
| Checks | all of them | the portable subset |
Both read policy/, so the version floors and required keys are defined once, and both are
executed against the shared behavioural fixtures in fixtures/. They are released in lockstep:
the same version number means the same policy in both ecosystems.
Installation
You can install the package via composer:
composer require limenet/laravel-baseline
You can publish the config file with:
php artisan vendor:publish --tag="laravel-baseline-config"
Usage
Add to your composer.json to run checks (and auto-fix) after every composer update:
"post-update-cmd": [ "@php artisan limenet:laravel-baseline:check --fix" ],
Running checks
# Check only — report issues without making changes php artisan limenet:laravel-baseline:check # Auto-fix — apply all safe automatic fixes, then report remaining issues php artisan limenet:laravel-baseline:check --fix
Checks marked 🔧 below support --fix. When --fix is used:
- Fully fixable checks: all conditions are applied automatically.
- Partially fixable checks (requires package installed first): configuration/script entries are fixed once the package is installed via
composer require. - Non-fixable checks: report the issue with an actionable message.
AI guidelines & skills
The package also ships Laravel Boost resources under
resources/boost/: an always-on guideline (the dev loop — ci-lint, tests, DDEV-first
conventions) and on-demand skills (e.g. creating-a-release). When a project that has
laravel/boost installed runs php artisan boost:install or php artisan boost:update --discover,
Boost discovers and publishes these to the consuming project's coding agents automatically.
JS-only projects
Projects with no PHP and no DDEV use the npm runner instead. It is a second implementation, not a
wrapper: PHP cannot reach into a JS project (and by this baseline's own convention npm runs on
the host while artisan runs inside DDEV), so the portable checks are reimplemented in TypeScript and
kept honest by the shared fixtures rather than by shared code.
npm install --save-dev @limenet-ch/baseline
npx baseline check # report issues npx baseline check --fix # apply safe fixes, then report what is left npx baseline periodic # walk through expired periodic checks npx baseline install-skills # copy the packaged skills into .claude/skills/
Wire it into the ci-lint npm script so CI and the Claude Stop hook both run it — npm has no
post-update-cmd equivalent, and npm 12 blocks dependency lifecycle scripts by default:
"scripts": { "ci-lint": "biome ci . && tsc --noEmit && baseline check" }
State lives in .baseline.json at the project root (a JS project has no config/ directory):
{
"excludes": ["hasNpmScripts"],
"periodic": { "updatesDependencies": "2026-08-16T09:00:00.000Z" }
}
What the npm runner checks
| Check | Relationship to the Laravel runner |
|---|---|
nodeVersion |
identical |
hardensNpmSupplyChain |
identical |
hasEditorconfig |
identical |
biomeUsesLocalSchema |
identical |
doesNotHaveCopilotOrJunieAgentFiles |
identical |
doesNotUseBothBaselineRunners |
mirrored: fails when composer.json requires limenet/laravel-baseline, since the Composer runner wins |
allowsToolingInClaudeSettings |
requires only the shared allow entries, not the DDEV/artisan ones |
deniesEnvReadsInClaudeSettings |
identical |
runsCiLintHookInClaudeSettings |
hooks npm run ci-lint instead of ddev composer run ci-lint |
updatesDependencies |
identical (periodic, every 30 days) |
hasNpmScripts |
identical |
hasCiJobs |
same GitLab CI templates, without the php job |
hasTrivyConfig |
identical, canonical config included: its vendor/**, storage/logs/ and .ddev/ skips are inert in a JS project |
ciSetsNodeVersion |
npm-only: the Laravel runner does not register it |
isCiLintComplete |
asserts the JS toolchain in the npm script, not pint/phpstan in a composer script |
callsBaseline |
hooks the ci-lint npm script, since npm has no post-update-cmd |
doesNotExcludeUnknownChecks |
identical, against this runner's smaller registry: a name only the Laravel runner knows is as dead here as one that exists nowhere |
usesReleaseIt |
inverted: fails if @release-it/bumper is configured, because package.json is already release-it's source of truth |
Deliberately not ported: everything composer-, artisan-, Rector-, PHPStan- or Spatie-Health-shaped;
the DDEV checks (ddevNodeVersionIsAuto, ddevMutagenIgnoresNodeModules, …); and
hasClaudeSettingsWithLaravelSkills / doesNotHaveLaravelSimplifierInClaudeSettings, which are
vacuous without Laravel.
Checks
This package validates your Laravel installation against the following checks:
Testing & Quality Tools
usesPest()- Validates Pest testing framework is configured (not PHPUnit directly)usesPestPhpstanPlugin()- Validatespestphp/pest-plugin-phpstanis installed when Pest 5+ and PHPStan are both present (warns if not applicable)usesPestRectorPlugin()- Validatespestphp/pest-plugin-rectoris installed when Pest 5+ and Rector are both present (warns if not applicable)- 🔧
usesRector()- Validates Rector automated code modernization is installed, withdriftingly/rector-laravelconstrained to at least^2.6.1— the release whereLaravelSetProvideris gone and its rules arrive throughLaravelSetList::COMPOSER_BASEDinstead (partial: fixes ci-lint script if packages installed) usesLarastan()- Validates Larastan static analysis tool is configuredusesPhpstanExtensions()- Validates PHPStan extensions are installedphpstanLevelAtLeastEight()- Validates PHPStan is configured to at least level 8- 🔧
phpstanParsesModelCastsMethod()- Validatesphpstan.neonsetsparseModelCastsMethod: true:ModelCastsPropertyToCastsMethodRectorrewritesprotected $casts = [...]into acasts(): arraymethod, and without this parameter Larastan reads only the generated@return array<string, string>— not a constant array — so every cast is lost and datetime attributes report as strings (inserts the parameter into theparametersblock) - 🔧
checkPhpunit()- Validates PHPUnit configuration with coverage reports (adds missing XML nodes and APP_KEY) - 🔧
hasRectorConfigWithComposerBased()- Validates RectorwithComposerBased(phpunit, symfony, laravel)is configured (appends call to rector.php) - 🔧
hasRectorConfigWithConfiguredRules()- Validates RectorwithConfiguredRule()calls are present forRouteActionCallableRectorandWhereToWhereLikeRector(appends calls to rector.php) - 🔧
hasRectorConfigWithPreparedSets()- Validates RectorwithPreparedSets(deadCode, codeQuality, codingStyle, typeDeclarations, privatization, instanceOf, earlyReturn)is configured (appends call to rector.php) - 🔧
hasRectorConfigWithImportNames()- Validates RectorwithImportNames(importShortClasses: false)is configured (appends call to rector.php) - 🔧
hasRectorConfigWithPhpSets()- Validates RectorwithPhpSets()is called (appends call to rector.php) - 🔧
hasRectorConfigWithAttributesSets()- Validates RectorwithAttributesSets()is called (appends call to rector.php) - 🔧
hasRectorConfigWithRules()- Validates RectorwithRules([MinutesToSecondsInCacheRector, UseForwardsCallsTraitRector])is configured (appends call to rector.php) - 🔧
hasRectorConfigWithSets()- Validates RectorwithSets([LaravelBaselineSetList::REMOVE_DEFAULT_DOCBLOCKS, LaravelSetList::LARAVEL_*])is configured with all required sets (appends call to rector.php) - 🔧
hasRectorConfigWithPaths()- Validates RectorwithPaths([app, database, routes, tests])is configured (appends call to rector.php) - 🔧
hasRectorConfigWithPestSet()- Validates RectorwithSets([PestSetList::CODING_STYLE])is configured when Pest 5+ and Rector are both present (appends call to rector.php; warns if not applicable) - 🔧
hasRectorConfigWithSkip()- Validates RectorwithSkip()contains required skipped rules (always: 6 Laravel rules plusStringToClassConstantRector, which maps the Laravel 5.2-era string events context-free and so rewrites any matching literal —view('auth.login')becomesIlluminate\Auth\Events\Login::class; Laravel 13+:TablePropertyToTableAttributeRector;AddGenericBuilderToScopesRector, new in rector-laravel 2.6 and shipped inLARAVEL_TYPE_DECLARATIONS, which downgrades an already-correctBuilder<$this>toBuilder<static>; when server.php exists:ServerVariableToRequestFacadeRector) (appends an importedwithSkip()call, or merges the missing classes into one that already exists)
IDE & Developer Tools
- 🔧
hasEditorconfig()- Validates.editorconfigexists with required settings (root = true,charset,end_of_line,indent_style,insert_final_newline,trim_trailing_whitespace) (creates.editorconfigwith canonical content if missing or incomplete) - 🔧
hasClaudeSettingsWithLaravelSkills()- Validates Claude Code settings include the Laravel agent skills plugin and marketplace (creates/merges.claude/settings.json) - 🔧
doesNotHaveLaravelSimplifierInClaudeSettings()- Fails if the deprecatedlaravel-simplifier@laravelplugin is still enabled in.claude/settings.json(removes the entry) - 🔧
deniesEnvReadsInClaudeSettings()- Validates.claude/settings.jsonpermissions.denyblocks reading.envplus every environment that ships an encrypted file (each.env.{env}.encryptedin the project root requires denying.env.{env});.env.examplestays readable (merges the deny entries) - 🔧
allowsToolingInClaudeSettings()- Validates.claude/settings.jsonpermissions.allowincludes the DDEV dev-loop commands (ddev composer run ci-lint,ddev composer test, and safe artisan commands:test,make:*,route:list,about,config:show,ide-helper,optimize:clear,cache:clear,config:clear,route:clear,view:clear) so the dev loop runs without prompts (merges the allow entries) - 🔧
asksBeforeDestructiveDbCommandsInClaudeSettings()- Validates.claude/settings.jsonpermissions.askrequires a confirmation before the artisan commands that destroy database contents (migrate:fresh,migrate:refresh,migrate:reset,migrate:rollback,db:wipe), covering both theddev artisanandphp artisanforms;askrather thandenyso the developer keeps an approval path (merges the ask entries) - 🔧
runsCiLintHookInClaudeSettings()- Validates.claude/settings.jsonhas aStophook runningddev composer run ci-lint(appends the hook) - 🔧
usesIdeHelpers()- Validates Laravel IDE Helper is configured:post-update-cmdrunside-helper:generate,ide-helper:models, andide-helper:meta, and.gitignoreignores the generated_ide_helper.php,_ide_helper_models.php, and.phpstorm.meta.phpfiles (partial: adds post-update scripts and gitignore entries if package installed) - 🔧
gitignoresLspFiles()- Validates.gitignoreignoresstorage/framework/lsp-*.php, the per-editor files the Laravel language server writes intostorage/framework(appends the entry, creating.gitignoreif missing) usesLaravelAdminer()- Warns if Laravel Adminer database UI is missing (optional), validates TFA confirmation and configuration when installed- 🔧
usesLaravelBoost()- Validates Laravel Boost AI development tool (partial: fixes boost.json and post-update script if package installed) - 🔧
laravelBoostMcpUsesDdev()- Validates.mcp.jsonconfigures thelaravel-boostMCP server to useddev artisan boost:mcp(creates/fixes.mcp.json; warns iflaravel/boostnot installed) - 🔧
doesNotHaveCopilotOrJunieAgentFiles()- Fails ifAGENTS.md, a.juniedirectory, or a.github/skillsdirectory exist — these are generated for the Copilot/Junie Boost agents, which are no longer required (deletesAGENTS.md, the.juniedirectory, and the.github/skillsdirectory) runsBoostUpdate()(periodic, every 30 days) - Warns if Laravel Boost is not installed; when installed, fails until a developer confirms runningphp artisan boost:update --discovervialimenet:laravel-baseline:periodicfollowsModernLaravelIdioms()(periodic, every 30 days) - Fails until a developer confirms running theauditing-laravel-idiomsskill, which audits typed cache getters, BackedEnum cache/session keys, andwhenFilledEnum()for request dataupdatesDependencies()(periodic, every 30 days) - Fails until a developer confirms (vialimenet:laravel-baseline:periodic) that composer & npm dependencies were updated by running theupdating-dependenciesskill — which updates in-constraint packages, reviews changelogs for project impact, and reports semver-blocked majors- 🔧
usesLimenetPintConfig()- Validates custom Laravel Pint formatting standards (partial: adds post-update script if package installed)
Laravel Features & Monitoring
- 🔧
usesLaravelHorizon()- Validates Laravel Horizon Redis queue manager (partial: adds ci-deploy-post script if package installed) usesLaravelPennant()- Warns if Laravel Pennant feature flags are missing (optional)- 🔧
usesLaravelPulse()- Validates Laravel Pulse application monitoring (partial: adds PULSE_ENABLED=false to phpunit.xml if package installed) - 🔧
cacheAllowsPulseSerializableClasses()- On Laravel 13+ with Pulse installed, validates the top-levelserializable_classesallow-list in config/cache.php permits the classes Pulse round-trips through the cache (stdClass,Illuminate\Support\Collection,Carbon\CarbonImmutable) — the Laravel 13 skeleton ships'serializable_classes' => false, which makes every Pulse card fail in production with "tried to access a property on an incomplete object" (adds the missing classes when the value isfalseor an incomplete array) - 🔧
usesLaravelTelescope()- Validates Laravel Telescope request debugging (partial: adds post-update script and TELESCOPE_ENABLED=false to phpunit.xml if package installed) usesSpatieHealthSetup()- Validates Spatie Health packages, schedules, s3_health disk, and result store configuration- 🔧
usesSpatieHealthHasCoreChecks()- Validates core health checks (CacheCheck, CpuLoadCheck, DatabaseCheck, DatabaseConnectionCountCheck, DebugModeCheck, EnvironmentCheck, HorizonCheck, QueueCheck, RedisCheck, ScheduleCheck, UsedDiskSpaceCheck) are registered (adds missing checks to Health::checks() in AppServiceProvider) - 🔧
usesSpatieHealthHasLaravelVersionCheck()- Validates LaravelVersionCheck is registered in Health::checks() (adds to AppServiceProvider) - 🔧
usesSpatieHealthHasPhpVersionCheck()- Validates PhpVersionCheck is registered in Health::checks() (adds to AppServiceProvider) - 🔧
usesSpatieHealthHasReleaseAgeCheck()- Validates ReleaseAgeCheck is registered in Health::checks() (adds to AppServiceProvider) usesSpatieHealthCacheCheckCacheStore()- Validates CacheCheck uses the dedicated 'health-checks' cache store via->driver('health-checks')in AppServiceProvider and config/cache.phpusesSpatieHealthQueueCheckCacheStore()- Validates QueueCheck: DispatchQueueCheckJobsCommand is scheduled everyMinute(), uses the dedicated 'health-checks' file cache store in AppServiceProvider and config/cache.phpusesSpatieHealthQueueCheckHorizonQueues()- Validates QueueCheck registers all queues from config/horizon.php via onQueue() (requires laravel/horizon)usesSpatieHealthScheduleCheckCacheStore()- Validates ScheduleCheck uses the dedicated 'health-checks' cache store in both AppServiceProvider and config/cache.php- 🔧
usesSpatieHealthScheduleCheckHeartbeat()- Validates ScheduleCheck is configured withheartbeatMaxAgeInMinutes(2)to prevent false positives (appends the call to ScheduleCheck in AppServiceProvider) usesSpatieBackup()- Validates Spatie Backup database backups with comprehensive config validation
Infrastructure & Dependencies
usesPredis()- Validates Predis Redis client is installedisLaravelVersionMaintained()- Validates Laravel 11+ is used- 🔧
doesNotUseSail()- Validates Sail is NOT used (partial: deletes docker-compose.yml; runcomposer remove laravel/sailmanually) - 🔧
doesNotUsePhpInsights()- Validates PHP Insights is NOT used (removes thenunomaduro/phpinsightscomposer.json entry, leftover ci-lint script entries, and config/insights.php; runcomposer updateafterward to sync composer.lock) doesNotUseSpatiePasskeysWithFortify()- Fails if bothspatie/laravel-passkeysandlaravel/fortifyare installed, as they overlap in authentication responsibilitydoesNotUseBothBaselineRunners()- Fails whenpackage.jsonalso declares@limenet-ch/baseline: the npm runner is the fallback for projects this package cannot reach, and in a Laravel project this one wins (reports thenpm uninstallto run; never uninstalls for you)doesNotUseHorizonWatcher()- Validates Spatie Horizon Watcher is NOT installed- 🔧
doesNotUseGreaterThanOrEqualConstraints()- Validates no>=version constraints in composer.json (use^or~instead) (replaces>=X.Ywith^X.Yin composer.json)
CI/CD & Deployment
hasCiJobs()- Validates GitLab CI pipeline jobs are properly configured (thetestjob may extend either.testor.test_db)- 🔧
hasTrivyConfig()- Validates Trivy security scanning CI job,trivy.yaml(scanners, skip-files, skip-dirs, ignorefile, cache.dir, telemetry/VEX/dependency-tree flags, andpkg.include-dev-depsso development dependencies are reported instead of silently skipped), presence of.trivyignore.yaml, and.trivycache/in.gitignore(creates/merges trivy.yaml, creates an empty .trivyignore.yaml, appends to .gitignore, and adds CI job) callsSentryHook()- Warns if Sentry error tracking is missing (optional)phpVersionMatchesCi()- Validates PHP version consistency with CI configurationisCiLintComplete()- Validates complete linting pipeline- 🔧
doesNotUseRectorSetProviders()- Fails whilerector.phpstill passesLaravelSetProvidertowithSetProviders():driftingly/rector-laravel2.6.0 deleted the class, so Rector aborts before doing any work, andwithComposerBased(laravel: true)already loads the rules it used to provide (removes the argument, and the call once nothing is left in it; the orphaned import is left to Pint/Rector) - 🔧
doesNotDuplicateRectorSetRules()- Fails whilerector.phplistsAddGenericReturnTypeToRelationsRectorinwithRules(): it already ships inLaravelSetList::LARAVEL_TYPE_DECLARATIONS, whichhasRectorConfigWithSets()mandates, and Rector 2.6 warns about the duplicate (removes the entry; the orphaned import is left to Pint/Rector) doesNotUseIgnition()- Validates Ignition debugger is NOT installed
Local Development
phpVersionMatchesDdev()- Validates PHP version consistency with DDEV- 🔧
nodeVersion()- Validates the project pins Node >= 24 (the current LTS) in bothpackage.jsonengines.nodeand.nvmrc, compatible with each other (creates the missing constraint — establishing Node 24 when none is declared — and bumps a declaration that allows anything older to 24; a newer line such as Node 26 is left alone, and a conflict between existingengines.nodeand.nvmrcis reported, not auto-resolved) - 🔧
hardensNpmSupplyChain()- Hardens npm against supply-chain attacks: requirespackage.jsonengines.npm>= 12 (npm 12 blocks dependency lifecycle scripts by default and refuses git/remote deps),.npmrcengine-strict=trueso that requirement is enforced rather than advisory, and.npmrcmin-release-age=7for a 7-day install cooldown that skips freshly-published (potentially compromised) versions (setsengines.npmto^12, and upserts both.npmrckeys while preserving existing lines) - 🔧
ddevHasPcovPackage()- Validates DDEV coverage configuration (adds pcov to webimage_extra_packages and creates .ddev/php/90-custom.ini) ddevHasRedisAddon()- Validates DDEV Redis addon is installed and at minimum version 2.2.0- 🔧
ddevMutagenIgnoresNodeModules()- Validates DDEV Mutagen sync configuration (creates mutagen.yml and fixes .gitignore) - 🔧
ddevNodeVersionIsAuto()- Validates.ddev/config.yamlsetsnodejs_version: autoso DDEV derives the Node version from the project's.nvmrcinstead of pinning its own (setsnodejs_version: auto, preserving surrounding comments and formatting) updatesDdevAddons()- Fails if any installed DDEV add-on (.ddev/addon-metadata/*/manifest.yaml) has aninstall_dateolder than 3 months; comment shows theddev add-on get <repository>command to refresh each stale add-on
Build & Release
- 🔧
bumpsComposer()- Validates automatic composer dependency bumping (addscomposer bumpto post-update-cmd) - 🔧
usesReleaseIt()- Validates automated release management (partial: creates/fixes .release-it.json and adds release npm script if packages installed) hasNpmScripts()- Validates required npm build scripts- 🔧
biomeUsesLocalSchema()- Validates thatbiome.json, when the project has one, points$schemaat./node_modules/@biomejs/biome/configuration_schema.jsonrather than a version-pinned remote URL, so the schema follows the installed Biome instead of needing a manual bump on every update. Passes when the project does not use Biome. (rewrites or inserts the$schemaline as a targeted text edit, leaving the rest of the file — comments included — byte-identical, since Biome formatsbiome.jsonitself)
Security & Configuration
- 🔧
modelShouldBeStrict()- ValidatesModel::shouldBeStrict()is called in AppServiceProvider withtrue, no argument, or a dynamic expression (notfalse) (addsModel::shouldBeStrict(! app()->isProduction())to boot()) - 🔧
formRequestFailOnUnknownFields()- ValidatesFormRequest::failOnUnknownFields()is called in AppServiceProvider (Laravel ≥13.6 only; warns on older versions) (addsFormRequest::failOnUnknownFields(! app()->isProduction())to boot()) hasDailyLogging()- Validates logging usesdailychannel (directly or viastack)hasEncryptedEnvFile()- Validates encrypted environment file existsusesReadableEncryptedEnvFile()- Validates the encrypted env file uses the readable line-per-variable format produced byddev artisan env:encrypt --readable(variable names stay visible in diffs), not the opaque blob format. Passes when no encrypted file exists (existence ishasEncryptedEnvFile's concern).doesNotPinOldMailTemplate()- Fails if a published mail view that pins the old template (resources/views/vendor/mail/html/themes/default.cssorhtml/header.blade.php) exists, preventing adoption of Laravel's modernized mail template.- 🔧
callsBaseline()- Validates self-validation runs after updates (adds/upgrades post-update-cmd entry to include--fix) - 🔧
doesNotExcludeUnknownChecks()- Fails whenconfig/baseline.phpexcludes a name no registered check answers to: excludes are matched against the registry, so an entry left behind by a check this package renamed or removed silences nothing and only hides that the exclusion is no longer in force (drops the dead entries, leaving the remaining excludes and the periodic state intact) doesNotCallPeriodicBaselineOnUpdate()- Fails ifphp artisan limenet:laravel-baseline:periodicis in thepost-update-cmdscripts (it shouldn't be — periodic checks fail CI automatically when expired)- 🔧
doesNotHaveGuidelinesScript()- Fails if the removedphp artisan limenet:laravel-baseline:guidelinescommand is still inpost-update-cmd(removed in v2.1.0) (removes the entry from composer.json) - 🔧
isInstalledAsRegularDependency()- Validateslimenet/laravel-baselineis inrequire(notrequire-dev) (moves from require-dev to require in composer.json) - 🔧
usesLaravelLang()- Validateslaravel-lang/langdev dependency is installed withlang:updateand pint in post-update scripts (partial: adds post-update scripts if package in require-dev)
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.