You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.5 KiB
52 lines
1.5 KiB
<?php
|
|
/**
|
|
* Fuel
|
|
*
|
|
* Fuel is a fast, lightweight, community driven PHP5 framework.
|
|
*
|
|
* @package Fuel
|
|
* @version 1.8
|
|
* @author Fuel Development Team
|
|
* @license MIT License
|
|
* @copyright 2010 - 2016 Fuel Development Team
|
|
* @link http://fuelphp.com
|
|
*/
|
|
|
|
/**
|
|
* NOTICE:
|
|
*
|
|
* If you need to make modifications to the default configuraion, copy
|
|
* this file to your app/config folder, and make them in there.
|
|
*
|
|
* This will allow you to upgrade fuel without losing your custom config.
|
|
*/
|
|
|
|
return array(
|
|
'phpunit' => array(
|
|
|
|
/**
|
|
* These phpunit settings allow oil to run your project's phpunit
|
|
* tests. If you've installed phpunit as a global install via
|
|
* pear, then the defaults don't need to be changed. But if you've
|
|
* installed phpunit via some other method such as Composer,
|
|
* you'll need to update these settings to reflect that.
|
|
*
|
|
* autoload_path - the path to PHPUnit's Autoload.php file.
|
|
* binary_path - the full path you'd type into the command line
|
|
* to run phpunit from an arbitrary directory.
|
|
*
|
|
* For example, if you've installed phpunit via Composer, your
|
|
* autoload_path will probably be something like:
|
|
* 'autoload_path' => VENDORPATH.'phpunit/phpunit/PHPUnit/Autoload.php',
|
|
* and your binary path will probably be something like:
|
|
* 'binary_path' => VENDORPATH.'bin/phpunit',
|
|
*
|
|
* At present, there is no support for phpunit.phar.
|
|
*/
|
|
|
|
'autoload_path' => 'PHPUnit/Autoload.php' ,
|
|
'binary_path' => 'phpunit' ,
|
|
|
|
),
|
|
);
|