Skip to content

Commit 7c5745f

Browse files
committed
Disable uploading to Scrutinizer CI
1 parent 037d77c commit 7c5745f

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,10 @@ jobs:
8686
- name: Run PHPUnit
8787
run: composer phpunit
8888

89-
- name: Upload coverage to Scrutinizer CI
90-
if: always() && matrix.php == '8.2'
91-
run: |
92-
wget --no-verbose https://scrutinizer-ci.com/ocular.phar
93-
php ocular.phar code-coverage:upload --format=php-clover build/clover.xml
89+
# Disabled because Scrutinizer Ocular has some problems
90+
#
91+
# - name: Upload coverage to Scrutinizer CI
92+
# if: always() && matrix.php == '8.2'
93+
# run: |
94+
# wget --no-verbose https://scrutinizer-ci.com/ocular.phar
95+
# php ocular.phar code-coverage:upload --format=php-clover build/clover.xml

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
MonologPHPMailer
42
================
53

@@ -21,7 +19,7 @@ MonologPHPMailer requires [PHP][link-php] 8.1 or higher, [Monolog][link-monolog]
2119

2220
### Using Composer
2321

24-
The reccomended way to install MonologPHPMailer is with [Composer][link-composer], dependency manager for PHP.
22+
The recommended way to install MonologPHPMailer is with [Composer][link-composer], a dependency manager for PHP.
2523

2624
You should just add `filips123/monolog-phpmailer` to your project dependencies in `composer.json`. It will also install Monolog and PHPMailer, but it is recommended to add them manually to `composer.json`.
2725

@@ -39,11 +37,11 @@ Do not forget to run `composer install` and add `require 'vendor/autoload.php';`
3937

4038
### Manually Installation
4139

42-
Alternatively, you could download all files in directory [`src`][link-handlers] from GitHub and then manually include them in your script. You also have to install Monolog and PHPMailer manually.
40+
Alternatively, you could download all files in the [`src`][link-handlers] directory from GitHub and then manually include them in your script. You also have to install Monolog and PHPMailer manually.
4341

4442
## Usage
4543

46-
You should just add handler `MonologPHPMailer\PHPMailerHandler` to your logger. It's first argument must be PHPMailer instance.
44+
You should just add the handler `MonologPHPMailer\PHPMailerHandler` to your logger. Its first argument must be a PHPMailer instance.
4745

4846
## Example
4947

@@ -89,9 +87,11 @@ $logger->alert('Something went wrong!');
8987
```
9088

9189
## Versioning
90+
9291
This library uses [SemVer][link-semver] SemVer for versioning. For the versions available, see the [tags on this repository][link-tags].
9392

9493
## License
94+
9595
This library is licensed under the MIT license. See the [LICENSE][link-license-file] file for details.
9696

9797
[icon-version]: https://img.shields.io/packagist/v/filips123/monolog-phpmailer.svg?style=flat-square&label=version

0 commit comments

Comments
 (0)