Simple, intuitive and object-oriented file and path operations, inspired by the path.py python library

olinox14 cb21fb8961 add unit tests for copy method 1 anno fa
src cb21fb8961 add unit tests for copy method 1 anno fa
tests cb21fb8961 add unit tests for copy method 1 anno fa
.gitignore 6526725c45 implement join and append methods 1 anno fa
Dockerfile 6526725c45 implement join and append methods 1 anno fa
composer.json 6526725c45 implement join and append methods 1 anno fa
composer.lock 6526725c45 implement join and append methods 1 anno fa
readme.md 53c31e2219 add mkdir, delete and copy (ongoing) methods 1 anno fa

readme.md

Lancer le docker

docker build -t path .

# Sur Linux
docker run -v "$(pwd)":/path --name path path

# Sous Windows
docker run -d -v "%cd%:/path" --name path path

docker exec -it path bash
composer install

Executer les tests

Se placer dans le docker, puis :

docker start path
docker exec -it path bash
vendor/bin/phpunit .