forked from diggin/Diggin_Http_Charset
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextrasetup.php
More file actions
27 lines (26 loc) · 1.09 KB
/
extrasetup.php
File metadata and controls
27 lines (26 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/**
* This file is used to provide extra files/packages outside package.xml
* More information: http://pear.php.net/manual/en/pyrus.commands.package.php#pyrus.commands.package.extrasetup
*/
$extrafiles = array(
'php/PEAR2/HTTP/Request.php' => __DIR__.'/vendor/Symfony2/Response.php'
);
/**
* for example:
if (basename(__DIR__) == 'trunk') {
$extrafiles = array(
new \PEAR2\Pyrus\Package(__DIR__ . '/../../HTTP_Request/trunk/package.xml'),
new \PEAR2\Pyrus\Package(__DIR__ . '/../../sandbox/Console_CommandLine/trunk/package.xml'),
new \PEAR2\Pyrus\Package(__DIR__ . '/../../MultiErrors/trunk/package.xml'),
new \PEAR2\Pyrus\Package(__DIR__ . '/../../Exception/trunk/package.xml'),
);
} else {
$extrafiles = array(
new \PEAR2\Pyrus\Package(__DIR__ . '/../HTTP_Request/package.xml'),
new \PEAR2\Pyrus\Package(__DIR__ . '/../sandbox/Console_CommandLine/package.xml'),
new \PEAR2\Pyrus\Package(__DIR__ . '/../MultiErrors/package.xml'),
new \PEAR2\Pyrus\Package(__DIR__ . '/../Exception/package.xml'),
);
}
*/