vacantplanet / development
所有 VacantPlanet 项目共享的开发设置和工具
1.1.4
2024-08-23 15:10 UTC
Requires
- friendsofphp/php-cs-fixer: ~3.62.0
This package is not auto-updated.
Last update: 2024-09-26 17:59:04 UTC
README
安装
composer require vacantplanet/development
用法
文档片段测试运行器
./vendor/bin/docs-test-runner path/to/docs/snippets
php-cs-fixer
将以下内容添加到您的 .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);