chubbyphp / chubbyphp-clean-directories
A command to clean directories based on name mapping.
Installs: 9 653
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: ^8.1
- symfony/console: ^5.4.31|^6.3.8|^7.0
Requires (Dev)
- chubbyphp/chubbyphp-dev-helper: dev-master
- chubbyphp/chubbyphp-mock: ^1.7.0
- infection/infection: ^0.27.8
- php-coveralls/php-coveralls: ^2.7.0
- phpstan/extension-installer: ^1.3.1
- phpstan/phpstan: ^1.10.45
- phpunit/phpunit: ^10.4.2
- psr/container: ^2.0.2
README
Description
A command to clean directories based on directoryName => directoryPath mapping.
Requirements
- php: ^8.1
- symfony/console: ^5.4.31|^6.3.8|^7.0
Installation
Through Composer as chubbyphp/chubbyphp-clean-directories.
composer require chubbyphp/chubbyphp-clean-directories "^1.3"
Usage
#!/usr/bin/env php <?php declare(strict_types=1); namespace App; use Chubbyphp\CleanDirectories\Command\CleanDirectoriesCommand; use Symfony\Component\Console\Application; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\ArgvInput; use Symfony\Component\Console\Input\InputOption; require __DIR__.'/../vendor/autoload.php'; $input = new ArgvInput(); $console = new Application(); $console->addCommand(new CleanDirectoriesCommand(['directoryName' => 'directoryPath'])); $console->run($input);
console clean-directories directoryName
Copyright
2024 Dominik Zogg