We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aeacba commit 3233bf3Copy full SHA for 3233bf3
samples/sample.php
@@ -46,7 +46,6 @@
46
*/
47
$phpcc = new tureki\PhpCc(array(
48
'java_file' => 'YOUR_JAVA_FILE_PATH',
49
- 'jar_file' => '../src/compiler/compiler.jar',
50
'output_path' => './output/',
51
'optimization' => 'SIMPLE_OPTIMIZATIONS',
52
'charset' => 'utf-8'
src/tureki/PhpCc.php
@@ -35,7 +35,7 @@ public function __construct($options)
35
36
$this->options = array(
37
'java_file' => 'java',
38
- 'jar_file' => 'compiler.jar',
+ 'jar_file' => __DIR__.'/vendor/closure-compiler/compiler.jar',
39
'output_path' => '/',
40
41
0 commit comments