summaryrefslogtreecommitdiffstats
path: root/vendor/plasmaconduit/path/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/plasmaconduit/path/README.md')
-rw-r--r--vendor/plasmaconduit/path/README.md22
1 files changed, 0 insertions, 22 deletions
diff --git a/vendor/plasmaconduit/path/README.md b/vendor/plasmaconduit/path/README.md
deleted file mode 100644
index cc04b5aa7..000000000
--- a/vendor/plasmaconduit/path/README.md
+++ /dev/null
@@ -1,22 +0,0 @@
-Path
-====
-
-[![Build Status](https://travis-ci.org/JosephMoniz/php-path.png?branch=master)](undefined)
-
-Simple and care free file path concatenation and simplification.
-
-```php
-<?php
-use PlasmaConduit\Path;
-
-Path::join("wat", "lol"); // -> wat/lol
-Path::join("/a", "///b"); // -> /a/b
-Path::join("/a", "b", "c", "..", "d"); // -> /a/b/d
-
-Path::normalize("/a/b/c/../d"); // -> /a/b/d
-Path::normalize("/a/b/c/../../d"); // -> /a/d
-Path::normalize("/b/wat//"); // -> /b/wat/
-Path::normalize("/b///wat/"); // -> /b/wat/
-Path::normalize(""); // -> .
-Path::normalize("/"); // -> /
-``` \ No newline at end of file