From 6f3d66c2252be38d9cce6c49b35e74a52d1201f7 Mon Sep 17 00:00:00 2001 From: Benoit Asselin Date: Wed, 5 Aug 2015 11:55:05 +0200 Subject: [PATCH] composer --- .gitignore | 4 ++++ composer.json | 22 ++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e641e54 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +# IDE +.idea + +tests diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..a99336d --- /dev/null +++ b/composer.json @@ -0,0 +1,22 @@ +{ + "name": "basselin/php-minify", + "description": "PhpMinify is a little tool to minify your application php like the javascript minify tools.", + "version": "0.2.2", + "keywords": ["minify", "php_strip_whitespace"], + "homepage": "https://github.com/basselin/php-minify", + "license": "MIT", + "type": "library", + "authors": [ + { + "name": "Benoit Asselin", + "email": "contact@161.io", + "homepage": "http://161.io" + } + ], + "require": { + "php": ">=5.1" + }, + "autoload": { + "classmap": ["phpminify.php"] + } +}