forked from fpoirotte/XRL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extrasetup.php
25 lines (24 loc) · 975 Bytes
/
extrasetup.php
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
<?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();
/**
* for example:
if (basename(__DIR__) == 'trunk') {
$extrafiles = array(
new \Pyrus\Package(__DIR__ . '/../../HTTP_Request/trunk/package.xml'),
new \Pyrus\Package(__DIR__ . '/../../sandbox/Console_CommandLine/trunk/package.xml'),
new \Pyrus\Package(__DIR__ . '/../../MultiErrors/trunk/package.xml'),
new \Pyrus\Package(__DIR__ . '/../../Exception/trunk/package.xml'),
);
} else {
$extrafiles = array(
new \Pyrus\Package(__DIR__ . '/../HTTP_Request/package.xml'),
new \Pyrus\Package(__DIR__ . '/../sandbox/Console_CommandLine/package.xml'),
new \Pyrus\Package(__DIR__ . '/../MultiErrors/package.xml'),
new \Pyrus\Package(__DIR__ . '/../Exception/package.xml'),
);
}
*/