Skip to content

Commit

Permalink
Fix issue #20 - autoload_files was not added
Browse files Browse the repository at this point in the history
  • Loading branch information
discordier committed Dec 23, 2015
1 parent d77f159 commit 0c1b971
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/CyberSpectrum/Compiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ public function compile($pharFile = 'ctb.phar')
$this->addFile($phar, new \SplFileInfo(__DIR__ . '/../../vendor/composer/autoload_namespaces.php'));
$this->addFile($phar, new \SplFileInfo(__DIR__ . '/../../vendor/composer/autoload_classmap.php'));
$this->addFile($phar, new \SplFileInfo(__DIR__ . '/../../vendor/composer/autoload_real.php'));
$this->addFile($phar, new \SplFileInfo(__DIR__ . '/../../vendor/composer/autoload_files.php'));
if (file_exists(__DIR__ . '/../../vendor/composer/include_paths.php')) {
$this->addFile($phar, new \SplFileInfo(__DIR__ . '/../../vendor/composer/include_paths.php'));
}
Expand Down

0 comments on commit 0c1b971

Please sign in to comment.