Skip to content

Commit

Permalink
Merge pull request #3 from alex-patterson-webdev/feature/0.2.0
Browse files Browse the repository at this point in the history
Feature/0.2.0
  • Loading branch information
alex-patterson-webdev authored Apr 30, 2023
2 parents 578058d + c301bfd commit a989ed6
Show file tree
Hide file tree
Showing 35 changed files with 851 additions and 902 deletions.
30 changes: 12 additions & 18 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,14 @@
build:
nodes:
php74:
environment:
php: 7.4
analysis:
environment:
php: 7.4
project_setup:
override:
- 'true'
tests:
override:
- php-scrutinizer-run
- command: phpcs-run
- command: composer arp:test
coverage:
file: ./test/coverage/clover.xml
format: clover
image: default-bionic
environment:
php: 8.1
project_setup:
override:
- 'true'
tests:
override:
- php-scrutinizer-run
- command: phpcs-run
checks:
php: true
coding_style:
Expand All @@ -26,6 +18,8 @@ coding_style:
linefeed_character: return-newline
before_parentheses:
closure_definition: true
around_operators:
concatenation: true
filter:
dependency_paths:
- "vendor/"
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
![github workflow](https://github.com/alex-patterson-webdev/laminas-monolog/actions/workflows/workflow.yml/badge.svg)
[![codecov](https://codecov.io/gh/alex-patterson-webdev/laminas-monolog/branch/master/graph/badge.svg)](https://codecov.io/gh/alex-patterson-webdev/laminas-monolog)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/alex-patterson-webdev/laminas-monolog/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/alex-patterson-webdev/laminas-monolog/?branch=master)

Expand All @@ -11,7 +12,7 @@ Monolog integration module for Laminas Applications

Installation via [Composer](https://getcomposer.org).

require alex-patterson-webdev/laminas-monolog ^0.1
require alex-patterson-webdev/laminas-monolog ^1.0.0

Register the modules services with the Laminas Service Manager by adding the module namespace to your applications `config/modules.config.php` file.

Expand Down
11 changes: 8 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
}
],
"require" : {
"php": ">=7.4 || >=8.0",
"alex-patterson-webdev/laminas-factory" : "^3.0.0",
"monolog/monolog" : "^2.2",
"php": ">=8.1",
"alex-patterson-webdev/laminas-factory" : "^4.0.0",
"monolog/monolog" : "^2.9",
"ext-json": "*"
},
"require-dev" : {
Expand All @@ -33,6 +33,11 @@
"ArpTest\\LaminasMonolog\\" : "test/unit/"
}
},
"extra": {
"laminas": {
"component": "Arp\\LaminasMonolog"
}
},
"scripts": {
"arp:test": [
"@arp:check",
Expand Down
Loading

0 comments on commit a989ed6

Please sign in to comment.