forked from fluent/fluent-logger-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.xml
82 lines (79 loc) · 3.3 KB
/
package.xml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0" encoding="UTF-8"?>
<package version="2.1" xmlns="http://pear.php.net/dtd/package-2.1" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.1 http://pear.php.net/dtd/package-2.1.xsd">
<name>fluent_logger</name>
<channel>fluentd.github.com</channel>
<summary>fluent logger client for php</summary>
<description>client library for the missing log collector.</description>
<lead>
<name>Shuhei Tanuma</name>
<user>chobie</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<lead>
<name>Sotaro Karasawa</name>
<user>sotarok</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2012-02-28</date>
<time>10:00:00</time>
<version>
<release>0.3.2</release>
<api>0.3.2</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache 2.0</license>
<notes>
fluent-logger-php 0.3.2
improve internally codes. the most big changes is:
[renamed]
Fluent\Logger => Fluent\Logger\LoggerInterface
we'll change Logger constructor signature on next release for injecting packer instance from outside.
</notes>
<contents>
<dir name="/" baseinstalldir="/">
<dir name="src" baseinstalldir="/">
<file name="Fluent/Autoloader.php" role="php" />
<file name="Fluent/Logger/LoggerInterface.php" role="php" />
<file name="Fluent/Logger/PackerInterface.php" role="php" />
<file name="Fluent/Logger/JsonPacker.php" role="php" />
<file name="Fluent/Logger/ChainLogger.php" role="php" />
<file name="Fluent/Logger/Entity.php" role="php" />
<file name="Fluent/Logger/Exception.php" role="php" />
<file name="Fluent/Logger/BaseLogger.php" role="php" />
<file name="Fluent/Logger/FluentLogger.php" role="php" />
<file name="Fluent/Logger/ConsoleLogger.php" role="php" />
<file name="Fluent/Logger/HttpLogger.php" role="php" />
</dir>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.3.0</min>
</php>
<pearinstaller>
<min>1.4.8</min>
</pearinstaller>
</required>
</dependencies>
<phprelease>
<filelist>
<install name="src/Fluent/Autoloader.php" as="Fluent/Autoloader.php"/>
<install name="src/Fluent/Logger/LoggerInterface.php" as="Fluent/LoggerInterface.php"/>
<install name="src/Fluent/Logger/PackerInterface.php" as="Fluent/Logger/PackerInterface.php" />
<install name="src/Fluent/Logger/JsonPacker.php" as="Fluent/Logger/JsonPacker.php" />
<install name="src/Fluent/Logger/ChainLogger.php" as="Fluent/Logger/ChainLogger.php" />
<install name="src/Fluent/Logger/Entity.php" as="Fluent/Logger/Entity.php" />
<install name="src/Fluent/Logger/Exception.php" as="Fluent/Logger/Exception.php" />
<install name="src/Fluent/Logger/BaseLogger.php" as="Fluent/Logger/BaseLogger.php"/>
<install name="src/Fluent/Logger/FluentLogger.php" as="Fluent/Logger/FluentLogger.php"/>
<install name="src/Fluent/Logger/ConsoleLogger.php" as="Fluent/Logger/ConsoleLogger.php"/>
<install name="src/Fluent/Logger/HttpLogger.php" as="Fluent/Logger/HttpLogger.php"/>
</filelist>
</phprelease>
</package>