forked from diggin/Diggin_Http_Charset
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackagexmlsetup.php
More file actions
30 lines (28 loc) · 1.17 KB
/
packagexmlsetup.php
File metadata and controls
30 lines (28 loc) · 1.17 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
28
29
<?php
/**
* Extra package.xml settings such as dependencies.
* More information: http://pear.php.net/manual/en/pyrus.commands.make.php#pyrus.commands.make.packagexmlsetup
*/
$package->channel = $compatible->channel
= 'pear.diggin.musicrider.com';
$package->rawlead = $compatible->rawlead
= array(
'name' => 'sasezaki',
'user' => 'sasezaki',
'email' => 'sasezaki@gmail.com',
'active' => 'yes'
);
$package->license = $compatible->license
= 'LGPL';
$package->dependencies['required']->php = $compatible->dependencies['required']->php
= '5.3.3';
$package->summary = $compatible->summary
= "Detecting based on header's charset and html meta charset. Automatically convert to UTF-8.";
$package->description = $compatible->description
= "Detecting based on header's charset and html meta charset. Automatically convert to UTF-8.";
$package->notes = $compatible->notes
= "developing";
$package->dependencies['required']->extension['mbstring']->save();
$compatible->dependencies['required']->extension['mbstring']->save();
$package->dependencies['required']->extension['iconv']->save();
$compatible->dependencies['required']->extension['iconv']->save();