youwe / file-mapping
File mapping library
1.1.2
2022-07-05 07:02 UTC
Requires
- php: ^7.2 || ^8.0
Requires (Dev)
- kint-php/kint: @stable
- mikey179/vfsstream: @stable
- phpunit/phpunit: @stable
This package is auto-updated.
Last update: 2024-11-05 12:29:56 UTC
README
A PHP package for mapping files from one location to another. It is used by the youwe/composer-file-installer package to move installed files according to the location mapping.
Usage examples
<?php /** * Create a mapping. */ $mapping = new UnixFileMapping( __DIR__ . '/../folder/files', getcwd(), ['./dir/one','./dir/two'] ); /** * Get the relative path to the source file. */ $mapping->getRelativeSource(); /** * Get the absolute path to the source file. */ $mapping->getSource(); /** * Get the relative path to the destination file. */ $mapping->getRelativeDestination(); /** * Get the absolute path to the destination file. */ $mapping->getDestination();