-
Notifications
You must be signed in to change notification settings - Fork 5
/
extrasetup.php
39 lines (35 loc) · 1.03 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* extrasetup.php for PEAR2_Cache_SHM.
*
* PHP version 5.3
*
* @category Caching
* @package PEAR2_Cache_SHM
* @author Vasil Rangelov <[email protected]>
* @copyright 2011 Vasil Rangelov
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
* @version GIT: $Id$
* @link http://pear2.php.net/PEAR2_Cache_SHM
*/
$packages = array(
'pear2.php.net' => array(
'PEAR2_Autoload'
)
);
$extrafiles = array();
$config = Pyrus\Config::current();
$registry = $config->registry;
$phpDir = $config->php_dir;
foreach ($packages as $channel => $channelPackages) {
foreach ($channelPackages as $package) {
foreach ($registry->toPackage($package, $channel)->installcontents
as $file => $info) {
if (strpos($file, 'php/') === 0 || strpos($file, 'src/') === 0) {
$filename = substr($file, 4);
$extrafiles['src/' . $filename]
= realpath($phpDir . DIRECTORY_SEPARATOR . $filename);
}
}
}
}