If you have something like: ```json { "output": "build/foo.phar", "main": "bin/foo.php", "base-path": "src" } ``` Then the real path of the main used is `$CWD/src/bin/foo.php` and the output _should_ be `$CWD/src/build/foo.phar` but actually is `$CWD/build/foo.phar`.
If you have something like:
{ "output": "build/foo.phar", "main": "bin/foo.php", "base-path": "src" }Then the real path of the main used is
$CWD/src/bin/foo.phpand the output should be$CWD/src/build/foo.pharbut actually is$CWD/build/foo.phar.