takuya / php-rrmdir
Recursive rmdir for PHP
Installs: 18
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/takuya/php-rrmdir
Requires
- php: >=7.0
Requires (Dev)
- ext-json: *
- phpunit/phpunit: ^9.5
- takuya/process: dev-master
This package is auto-updated.
Last update: 2025-10-04 23:48:47 UTC
README
Recursive rmdir for PHP
tests results .
Installing from github.
composer config repositories.takuya/php-rrmdir vcs https://github.com/takuya/php-rrmdir
composer config minimum-stability dev
composer require takuya/php-rrmdir
Installing from packagist.
composer require takuya/php-rrmdir composer install
Usage example.
This package provides a function rrmdir()
to your composer project.
<?php require_once 'vendor/autoload.php'; $ret = rrmdir('/var/www/virtualhosts/example.com/www-data'); is_dir($ret);#=>false
run tests
composer install
composer dumpautoload
./vendor/bin/phpunit