Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/**
3
 * Unit tests for HTTP_Request2 package
4
 *
5
 * PHP version 5
6
 *
7
 * LICENSE:
8
 *
9
 * Copyright (c) 2008-2011, Alexey Borzov <avb@php.net>
10
 * All rights reserved.
11
 *
12
 * Redistribution and use in source and binary forms, with or without
13
 * modification, are permitted provided that the following conditions
14
 * are met:
15
 *
16
 *    * Redistributions of source code must retain the above copyright
17
 *      notice, this list of conditions and the following disclaimer.
18
 *    * Redistributions in binary form must reproduce the above copyright
19
 *      notice, this list of conditions and the following disclaimer in the
20
 *      documentation and/or other materials provided with the distribution.
21
 *    * The names of the authors may not be used to endorse or promote products
22
 *      derived from this software without specific prior written permission.
23
 *
24
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
25
 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
26
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
27
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
28
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
30
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
31
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
32
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35
 *
36
 * @category   HTTP
37
 * @package    HTTP_Request2
38
 * @author     Alexey Borzov <avb@php.net>
39
 * @license    http://opensource.org/licenses/bsd-license.php New BSD License
40
 * @version    SVN: $Id: NetworkConfig.php.dist 308299 2011-02-12 23:20:23Z avb $
41
 * @link       http://pear.php.net/package/HTTP_Request2
42
 */
43
 
44
/**
45
 * This file contains configuration needed for running HTTP_Request2 tests
46
 * that interact with the network. Do not edit this file, copy it to
47
 * NetworkConfig.php and edit the copy instead.
48
 */
49
 
50
/**
51
 * Base URL for HTTP_Request2 Adapters tests
52
 *
53
 * To enable the tests that actually perform network interaction, you should
54
 * copy the contents of _network directory to a directory under your web
55
 * server's document root or create a symbolic link to _network directory
56
 * there. Set this constant to point to the URL of that directory.
57
 */
58
define('HTTP_REQUEST2_TESTS_BASE_URL',          null);
59
 
60
/**#@+
61
 * Proxy setup for Socket Adapter tests
62
 *
63
 * Set these constants to run additional tests for Socket Adapter using a HTTP
64
 * proxy. If proxy host is not set then the tests will not be run.
65
 */
66
define('HTTP_REQUEST2_TESTS_PROXY_HOST',        null);
67
define('HTTP_REQUEST2_TESTS_PROXY_PORT',        8080);
68
define('HTTP_REQUEST2_TESTS_PROXY_USER',        '');
69
define('HTTP_REQUEST2_TESTS_PROXY_PASSWORD',    '');
70
define('HTTP_REQUEST2_TESTS_PROXY_AUTH_SCHEME', 'basic');
71
/**#@-*/
72
?>