Skip to content

Commit 6ae1f75

Browse files
committed
init
Signed-off-by: Kevin Nguyen <k.nguyen@thecodingmachine.com>
0 parents  commit 6ae1f75

File tree

4 files changed

+69
-0
lines changed

4 files changed

+69
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*~

LICENSE.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2008-2012 David Negrier
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
What is this package
2+
====================
3+
4+
<div class="alert"><strong>DEPRECATED!</strong> Warning, this package is deprecated in favor of
5+
<em>mouf/utils.log.psr.errorlog_logger</em> that implements the same logger, but with PSR-3
6+
compatibility.</div>
7+
8+
This package contains a logger that logs messages in the PHP error log, using the error_log function.
9+
10+
Mouf package
11+
------------
12+
13+
This package is part of Mouf (http://mouf-php.com), an effort to ensure good developing practices by providing a graphical dependency injection framework.

composer.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name": "mouf/utils.log.psr.multi-logger",
3+
"description": "This package contains a PSR-3 compatible logger that wrap a set of loggers",
4+
"keywords": ["log", "logger", "error_log"],
5+
"homepage": "https://mouf-php.com/packages/mouf/utils.log.psr.multi-logger",
6+
"type": "mouf-library",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Kévin Nguyen",
11+
"email": "k.nguyen@thecodingmachine.com",
12+
"homepage": "http://mouf-php.com"
13+
}
14+
],
15+
"require": {
16+
"php": ">=5.3.0",
17+
"psr/log" : "~1.0",
18+
"mouf/mouf-installer": "~2.0"
19+
},
20+
"autoload": {
21+
"psr-0": {
22+
"Mouf\\Utils\\Log\\Psr\\": "src/"
23+
}
24+
},
25+
"extra": {
26+
"mouf": {
27+
"install": [
28+
{
29+
"type": "class",
30+
"class": "Mouf\\Utils\\Log\\Psr\\MultiLoggerInstaller"
31+
}
32+
],
33+
"logo": "logo.png"
34+
}
35+
}
36+
}

0 commit comments

Comments
 (0)