We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 386ddf9 commit 664eadeCopy full SHA for 664eade
.gitignore
@@ -1,2 +1,3 @@
1
/vendor/*
2
-composer.phar
+composer.phar
3
+sample.phar
build/compile.php
@@ -0,0 +1,14 @@
+<?php
+/**
+* Packages everything into a nice PHAR archive
4
+*/
5
+
6
+if(file_exists('emulator.phar')) {
7
+ unlink('emulator.phar');
8
+}
9
10
+$phar = new Phar('emulator.phar', 0, 'emulator.phar');
11
12
+$phar->buildFromDirectory(dirname(__DIR__));
13
+$phar->delete('composer.phar');
14
+$phar->setDefaultStub('emulator/emulator.php');
0 commit comments