forked from makasim/fpErrorNotifierPlugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.xml
138 lines (134 loc) · 5.2 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.4.6" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" 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.0 http://pear.php.net/dtd/package-2.0.xsd">
<name>fpErrorNotifierPlugin</name>
<channel>plugins.symfony-project.org</channel>
<summary>
Allows to catch all kind of exceptions\errors (including fatal and parse) and store them to file or send via email
</summary>
<description>
The goal of the plugin to easy catch all kind of errors\exceptions.
* exception
* fatal errors
* parse errors
* memory limit errors
* warnings
* notices
The plugin is made in OOP style, has modular structure so you can easy change everything you want:
* storage of reports(write to file or send mail)
* report info
* report view (html or simple text)
* error handler (catch all errors or ignore some)
To guaranty the plugin works as it expected I covered code by tests. You can easy run them using sfPhpunitPlugin symfony plugin.
</description>
<lead>
<name>Maksim Kotlyar</name>
<user>maksim_ka</user>
<email>mkotlar@ukr.net</email>
<active>yes</active>
</lead>
<date>2010-08-13</date>
<time>13:13:00</time>
<version>
<release>1.0.0</release>
<api>1.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.symfony-project.org/license">MIT license</license>
<notes>-</notes>
<contents>
<dir name="/">
<dir name="config">
<file role="data" name="config.php" />
<file role="data" name="notify.yml" />
<file role="data" name="fpErrorNotifierPluginConfiguration.class.php" />
</dir>
<dir name="lib">
<dir name="decorator">
<file role="data" name="fpBaseErrorNotifierDecorator.php" />
<file role="data" name="fpErrorNotifierDecoratorHtml.php" />
<file role="data" name="fpErrorNotifierDecoratorText.php" />
</dir>
<dir name="driver">
<dir name="mail">
<file role="data" name="fpBaseErrorNotifierDriverMail.php" />
<file role="data" name="fpErrorNotifierDriverMailNative.php" />
<file role="data" name="fpErrorNotifierDriverMailSymfony.php" />
</dir>
<file role="data" name="fpBaseErrorNotifierDriver.php" />
<file role="data" name="fpErrorNotifierDriverFile.php" />
<file role="data" name="fpErrorNotifierDriverNull.php" />
</dir>
<dir name="handler">
<file role="data" name="fpErrorNotifierHandler.php" />
<file role="data" name="fpErrorNotifierHandlerIgnore.php" />
</dir>
<dir name="message">
<file role="data" name="fpBaseErrorNotifierMessage.php" />
<file role="data" name="fpErrorNotifierMessage.php" />
<file role="data" name="fpErrorNotifierMessageHelper.php" />
</dir>
<dir name="util">
<file role="data" name="fpErrorNotifierNullObject.php" />
</dir>
<file role="data" name="fpErrorNotifier.php" />
</dir>
<dir name="test">
<dir name="phpunit">
<dir name="decorator">
<file role="data" name="fpBaseErrorNotifierDecoratorTestCase.php" />
<file role="data" name="fpErrorNotifierDecoratorHtmlTestCase.php" />
<file role="data" name="fpErrorNotifierDecoratorTextTestCase.php" />
</dir>
<dir name="fixtures">
</dir>
<dir name="handler">
<file role="data" name="fpErrorNotifierHandlerIgnoreTestCase.php" />
<file role="data" name="fpErrorNotifierHandlerTestCase.php" />
</dir>
<dir name="message">
<file role="data" name="fpErrorNotifierMessageHelperTestCase.php" />
<file role="data" name="fpErrorNotifierMessageTestCase.php" />
</dir>
<file role="data" name="fpErrorNotifierRootTestSuite.php" />
<file role="data" name="fpErrorNotifierTestCase.php" />
</dir>
</dir>
<file role="data" name="LICENSE" />
<file role="data" name="README" />
</dir>
</contents>
<dependencies>
<required>
<php><min>5.2.4</min></php>
<pearinstaller><min>1.4.1</min></pearinstaller>
<package>
<name>symfony</name>
<channel>pear.symfony-project.com</channel>
<min>1.1.0</min>
<max>1.4.40</max>
</package>
</required>
</dependencies>
<phprelease />
<changelog>
<release>
<version>
<release>1.0.0</release>
<api>1.2.0</api>
</version>
<stability>
<release>stable</release>
<api>1.2.0</api>
</stability>
<license uri="http://www.symfony-project.com/license">MIT license</license>
<date>2010-08-11</date>
<license>MIT</license>
<notes>
* release first version
</notes>
</release>
</changelog>
</package>