Skip to content

Commit 6f3d66c

Browse files
committed
composer
1 parent 03187d2 commit 6f3d66c

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# IDE
2+
.idea
3+
4+
tests

composer.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "basselin/php-minify",
3+
"description": "PhpMinify is a little tool to minify your application php like the javascript minify tools.",
4+
"version": "0.2.2",
5+
"keywords": ["minify", "php_strip_whitespace"],
6+
"homepage": "https://github.com/basselin/php-minify",
7+
"license": "MIT",
8+
"type": "library",
9+
"authors": [
10+
{
11+
"name": "Benoit Asselin",
12+
"email": "[email protected]",
13+
"homepage": "http://161.io"
14+
}
15+
],
16+
"require": {
17+
"php": ">=5.1"
18+
},
19+
"autoload": {
20+
"classmap": ["phpminify.php"]
21+
}
22+
}

0 commit comments

Comments
 (0)