Skip to content

Commit

Permalink
Allow usage with Monolog 2
Browse files Browse the repository at this point in the history
Additionally:
- the processors now implement ProcessorInterface
- PHPUnit dependency updated to ^8.5 (^9.5 requires additional changes)
- Travis configured to build with currently supported PHP versions
  • Loading branch information
Rimas Kudelis committed May 30, 2022
1 parent a36b099 commit 24da939
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 1,280 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.idea/
.phpunit.result.cache
vendor/
atlassian-ide-plugin.xml
composer.lock
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
language: php
php:
- '7.1'
- '7.2'
- '7.4'
- '8.0'
- '8.1'

install:
- composer install --prefer-dist
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"type": "library",
"license": "MIT",
"require": {
"monolog/monolog": "^1.17"
"monolog/monolog": "^1.17|^2.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {"Egeniq\\Monolog\\Gdpr\\": "src/"}
Expand Down
Loading

0 comments on commit 24da939

Please sign in to comment.