paths.php 648 B

12345678910111213141516171819202122232425
  1. <?php
  2. return [
  3. // Configurable paths
  4. //
  5. // Here you can manually set paths to some commands Rocketeer
  6. // might try to use, if you leave those empty it will try to find them
  7. // manually or assume they're in the root folder
  8. //
  9. // You can also add in this file custom paths for any command or binary
  10. // Rocketeer might go looking for
  11. ////////////////////////////////////////////////////////////////////
  12. // Path to the PHP binary
  13. 'php' => '/usr/local/php/bin/php',
  14. // Path to Composer
  15. 'composer' => '/usr/local/bin/composer',
  16. // Path to the Artisan CLI
  17. 'artisan' => 'artisan',
  18. ];