-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Raphael Antonmattei
committed
Jun 10, 2015
1 parent
aa5f4da
commit c29e17b
Showing
3 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.DS_Store | ||
composer.lock | ||
composer.phar | ||
phpunit.xml | ||
vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"name": "theorchard/monolog-cascade", | ||
"version": "0.0.1", | ||
"type": "library", | ||
"description": "Monolog extension to configure multiple loggers in a blink of an eye and access them from anywhere", | ||
"keywords": ["monolog", "cascade", "monolog extension", "monolog plugin", "monolog utils"], | ||
"homepage": "https://github.com/theorchard/monolog-cascade", | ||
"require": { | ||
"php": ">=5.3.9", | ||
"symfony/config": "~2.7.0", | ||
"symfony/options-resolver": "~2.7.0", | ||
"symfony/serializer": "~2.7.0", | ||
"symfony/yaml": "~2.7.0", | ||
"monolog/monolog": "~1.13" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Cascade\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Cascade\\Tests\\": "tests/" | ||
} | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "4.2.*", | ||
"pdepend/pdepend": "1.1.1", | ||
"phpmd/phpmd": "1.5.0", | ||
"sebastian/phpcpd": "2.0.0", | ||
"phploc/phploc": "2.0.3", | ||
"mayflower/php-codebrowser": "1.1.1", | ||
"squizlabs/php_codesniffer": "2.2.0", | ||
"mikey179/vfsStream": "~1.4" | ||
}, | ||
"prefer-stable": true, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "0.0.x-dev" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<phpunit bootstrap="vendor/autoload.php" colors="true"> | ||
<testsuites> | ||
<testsuite name="Monolog-Cascade Test Suite"> | ||
<directory>tests/</directory> | ||
</testsuite> | ||
</testsuites> | ||
|
||
<filter> | ||
<whitelist> | ||
<directory suffix=".php">src/</directory> | ||
</whitelist> | ||
</filter> | ||
|
||
<php> | ||
<ini name="date.timezone" value="UTC"/> | ||
</php> | ||
</phpunit> |