summaryrefslogtreecommitdiffstats
path: root/vendor/plasmaconduit/path/README.md
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-08-15 13:52:32 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2015-08-15 13:57:23 +0200
commit94575cc761c016b68135b398445d554bc984b1d5 (patch)
tree35f2decbb4cfed12e65f420228e5e1e150f36068 /vendor/plasmaconduit/path/README.md
parent44733bc8b4f5f1a6fb26dea01b9d33c7b0321d67 (diff)
swap out unlicensed lib
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