Skip to content

Commit 0462adc

Browse files
committed
Merge branch 'feature/PSR-guideline' into develop
2 parents 5f4ea11 + c451cdc commit 0462adc

File tree

14 files changed

+364
-708
lines changed

14 files changed

+364
-708
lines changed

.gitattributes

Lines changed: 0 additions & 22 deletions
This file was deleted.

LICENSE

Lines changed: 0 additions & 176 deletions
This file was deleted.

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Step 1. Edit your `composer.json`:
1616
```json
1717
{
1818
"require": {
19-
"tureki/phpcc": ">=1.0.0"
19+
"tureki/phpcc": ">=1.0.5"
2020
}
2121
}
2222
```
@@ -68,14 +68,12 @@ Example:
6868

6969

7070

71-
7271
----
7372

7473
<code>jar_file</code> is Google Closure Compiler jar file. Your can download latest version on this [link](http://code.google.com/p/closure-compiler/wiki/BinaryDownloads)
7574

7675

7776

78-
7977
----
8078

8179
After setting. use <code>help()</code> method to test **phpcc**.
@@ -160,6 +158,11 @@ print_r($ary_result);
160158

161159

162160

161+
## Todo
162+
163+
a. Add Unit Test
164+
b. Integrate CI
165+
163166
## Authors
164167

165168
**tureki**
@@ -168,6 +171,6 @@ print_r($ary_result);
168171

169172

170173

171-
## Copyright and license
174+
## Copyright and License
172175

173-
Copyright 2013 tureki, under [the Apache 2.0 license](LICENSE).
176+
Copyright 2013 tureki, under [MIT License](http://opensource.org/licenses/MIT).
File renamed without changes.
File renamed without changes.

composer.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,22 @@
33
"description": "A PHP Library to use Google Closure Compiler compress Javascript ",
44
"keywords": [ "php", "compress", "closure compiler" ],
55
"type": "library",
6-
"license": "Apache 2",
6+
"license": "MIT",
7+
"support": {
8+
"issues": "https://github.com/tureki/php-closure-compiler/issues",
9+
"source": "https://github.com/tureki/php-closure-compiler"
10+
},
711
"authors": [{
812
"name": "tureki",
13+
"email": "[email protected]",
914
"homepage": "https://github.com/tureki"
1015
}],
1116
"require": {
1217
"php": ">=5.3.0"
1318
},
1419
"autoload": {
15-
"psr-0": {
16-
"tureki": "src/"
17-
}
20+
"psr-4": {
21+
"tureki\\": "src/tureki/"
22+
}
1823
}
1924
}

samples/js/README

Lines changed: 0 additions & 17 deletions
This file was deleted.

samples/output/.gitkeep

Whitespace-only changes.

samples/output/README

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)