vacantplanet/development

Shared development settings and tools for all VacantPlanet projects

Installs: 23

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/vacantplanet/development

1.1.4 2024-08-23 15:10 UTC

This package is auto-updated.

Last update: 2025-10-31 00:35:20 UTC


README

Installation

composer require vacantplanet/development

Usage

Documentation snippets test runner

./vendor/bin/docs-test-runner path/to/docs/snippets

php-cs-fixer

Add the following to your .php-cs-fixer.dist.php:

<?php

declare(strict_types=1);

$finder = PhpCsFixer\Finder::create()->in([__DIR__ . '/src', __DIR__ . '/tests']);
$config = new VacantPlanet\Development\PhpCsFixer\Config();

return $config->setFinder($finder);