Browse Source

Use new bootstrap/cache for cached optimizations loaded during bootstrapping.

Taylor Otwell 9 years ago
parent
commit
4e0b15fba1
2 changed files with 3 additions and 1 deletions
  1. 1 1
      bootstrap/autoload.php
  2. 2 0
      bootstrap/cache/.gitignore

+ 1 - 1
bootstrap/autoload.php

@@ -27,7 +27,7 @@ require __DIR__.'/../vendor/autoload.php';
 |
 */
 
-$compiledPath = __DIR__.'/../vendor/compiled.php';
+$compiledPath = __DIR__.'/cache/compiled.php';
 
 if (file_exists($compiledPath)) {
     require $compiledPath;

+ 2 - 0
bootstrap/cache/.gitignore

@@ -0,0 +1,2 @@
+*
+!.gitignore