Download the PHP package jaroslavtyc/flowmedia-dir-sync without Composer
On this page you can find all versions of the php package jaroslavtyc/flowmedia-dir-sync. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jaroslavtyc/flowmedia-dir-sync
More information about jaroslavtyc/flowmedia-dir-sync
Files in jaroslavtyc/flowmedia-dir-sync
Package flowmedia-dir-sync
Short Description Just a proof of my skills to get a job
License MIT
Informations about the package flowmedia-dir-sync
Proof of my skills to get a job
NOT a production-ready code!
Use at your own risk.
But I will be happy if you will get inspired by this 😉
Purpose
I should be able to create a independent library to control directories by a JSON configuration and CLI. With use of object-oriented programming and PHP (in a version of my choice).
Standalone
This library should be runnable just by a terminal emulator and a PHP executable.
for example:
Independent
No other libraries should be used (not even shinnies as the Symfony Console).
Usage
Create a JSON file with configuration directives:
- key starting with a hash sign
#
is processed as an Action, value (scalar, array, object...) is then used as a parameter toAction->runAction
itself- see
\JaroslavTyc\DirSync\Actions\ActionInterface
for details
- see
- key not starting by a hash sign
#
is considered as a dir name and is used for Create Dir Action directly as a value- any value pointed by that JSON key will be ignored (hint: use
null
there) - see
\JaroslavTyc\DirSync\Actions\CreateDirAction
for details
- any value pointed by that JSON key will be ignored (hint: use
for example:
Process it:
Should create two empty directories NewDirByDirSyncDirectName
and NewDirByDirSyncCreateDirAction
in a current working directory.
More Actions
Create your own Action implementing \JaroslavTyc\DirSync\Actions\ActionInterface
and register them to \JaroslavTyc\DirSync\ActionsRunner
.
for example:
Original task
All of this comes from the original Flowmedia task.
Differences against original task
root dir
renamed toworking dir
, as root dir has specific meaning in Linuxworking dir
(formerlyroot dir
) has to be provided explicitly to the synchronization method itself to avoid accidents and confusion- all configuration options, except
working dir
, are wrapped by interfaceDirSyncOptionsInterface
, most of them originally enclosed by original taskDirSyncInterface
Installation
The easiest way is to get it via composer:
All versions of flowmedia-dir-sync with dependencies
ext-json Version *
ext-posix Version *