-
Notifications
You must be signed in to change notification settings - Fork 14
/
extrasetup.php
22 lines (22 loc) · 887 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
<?php
/**
* This file is used to provide extra files/packages outside package.xml
*/
/**
* 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'),
);
}
*/