Skip to content

Commit 77e2ee1

Browse files
committed
phpstorm printer
1 parent 9bbb6cc commit 77e2ee1

6 files changed

+2232
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

CODE_OF_CONDUCT.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
don't be a dick

README.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# PhpStorm printer
2+
3+
prints additional PhpStorm editor url in PHPUnit cli output.
4+
5+
## installation
6+
```bash
7+
$ composer require --dev wickedone/phpunit-printer
8+
```
9+
10+
### command line usage:
11+
specify this printer on the command line:
12+
13+
```bash
14+
$ php vendor/bin/phpunit --printer='WickedOne\PHPUnitPrinter\PhpStormPrinter' src/
15+
```
16+
17+
### phpunit xml configuration
18+
specify this printer in your ``phpunit.xml.dist``:
19+
```xml
20+
<?xml version="1.0" encoding="UTF-8"?>
21+
22+
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
23+
<phpunit
24+
...
25+
printerClass="WickedOne\PHPUnitPrinter\PhpStormPrinter"
26+
...
27+
>
28+
```

composer.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "wickedone/phpunit-printer",
3+
"description": "phpunit output with phpstorm editor url",
4+
"type": "library",
5+
"keywords": [
6+
"phpunit",
7+
"phpstorm",
8+
"testing"
9+
],
10+
"require": {
11+
"php": ">=7.3",
12+
"phpunit/phpunit": "^9.5"
13+
},
14+
"license": "MIT",
15+
"authors": [
16+
{
17+
"name": "wickedOne",
18+
"email": "[email protected]"
19+
}
20+
],
21+
"autoload": {
22+
"psr-4": {
23+
"WickedOne\\PHPUnitPrinter\\": "src/"
24+
}
25+
},
26+
"minimum-stability": "dev",
27+
"prefer-stable": true
28+
}

0 commit comments

Comments
 (0)