oil.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /**
  3. * Fuel is a fast, lightweight, community driven PHP5 framework.
  4. *
  5. * @package Fuel
  6. * @version 1.5
  7. * @author Fuel Development Team
  8. * @license MIT License
  9. * @copyright 2010 - 2013 Fuel Development Team
  10. * @link http://fuelphp.com
  11. */
  12. /**
  13. * NOTICE:
  14. *
  15. * If you need to make modifications to the default configuraion, copy
  16. * this file to your app/config folder, and make them in there.
  17. *
  18. * This will allow you to upgrade fuel without losing your custom config.
  19. */
  20. return array(
  21. 'phpunit' => array(
  22. /**
  23. * These phpunit settings allow oil to run your project's phpunit
  24. * tests. If you've installed phpunit as a global install via
  25. * pear, then the defaults don't need to be changed. But if you've
  26. * installed phpunit via some other method such as Composer,
  27. * you'll need to update these settings to reflect that.
  28. *
  29. * autoload_path - the path to PHPUnit's Autoload.php file.
  30. * binary_path - the full path you'd type into the command line
  31. * to run phpunit from an arbitrary directory.
  32. *
  33. * For example, if you've installed phpunit via Composer, your
  34. * autoload_path will probably be something like:
  35. * 'autoload_path' => DOCROOT.'vendor/phpunit/phpunit/PHPUnit/Autoload.php',
  36. * and your binary path will probably be something like:
  37. * 'binary_path' => DOCROOT.'vendor/bin/phpunit',
  38. *
  39. * At present, there is no support for phpunit.phar.
  40. */
  41. 'autoload_path' => 'PHPUnit/Autoload.php' ,
  42. 'binary_path' => 'phpunit' ,
  43. ),
  44. );