fiveorbs / dev
Shared development settings and tools for all FiveOrbs projects
1.1.6
2024-11-17 16:44 UTC
Requires
- friendsofphp/php-cs-fixer: ~3.62.0
This package is not auto-updated.
Last update: 2024-11-17 16:46:04 UTC
README
Installation
composer require fiveorbs/dev
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 FiveOrbs\Development\PhpCsFixer\Config(); return $config->setFinder($finder);