summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-10-06 08:30:05 +0200
committerRemi Collet <fedora@famillecollet.com>2016-10-06 08:30:05 +0200
commite944271924cd89478a29fe217668da6908639dc6 (patch)
tree02d4a34dac84257240d23de503119bbeba2e37ce /composer.json
parenta00bbd6e1ba4e078cb8b546c0250079295fe0739 (diff)
php-webmozart-path-util: add backport stuff
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..884ccac
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,34 @@
+{
+ "name": "webmozart/path-util",
+ "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
+ }
+ ],
+ "require": {
+ "php": ">=5.3.3",
+ "webmozart/assert": "~1.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.6",
+ "sebastian/version": "^1.0.1"
+ },
+ "autoload": {
+ "psr-4": {
+ "Webmozart\\PathUtil\\": "src/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Webmozart\\PathUtil\\Tests\\": "tests/"
+ }
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.3-dev"
+ }
+ }
+}