This repository has been archived by the owner on Mar 29, 2023. It is now read-only.
forked from mikeerickson/phpunit-pretty-result-printer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·53 lines (53 loc) · 1.5 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "codedungeon/phpunit-result-printer",
"version": "0.32.0",
"description": "PHPUnit Pretty Result Printer",
"keywords": [
"phpunit",
"printer",
"result-printer",
"composer",
"package",
"testing",
"tdd"
],
"license": "MIT",
"authors": [
{
"name": "Mike Erickson",
"email": "[email protected]"
}
],
"type": "library",
"require": {
"php": "^7.1 | ^8.0",
"hassankhan/config": "^0.11.2|^1.0|^2.0|^3.0",
"symfony/yaml": "^2.7|^3.0|^4.0|^5.0",
"codedungeon/php-cli-colors": "^1.10.2",
"2bj/phanybar": "^1.0"
},
"require-dev": {
"spatie/phpunit-watcher": "^1.6"
},
"autoload": {
"psr-4": {
"Codedungeon\\PHPUnitPrettyResultPrinter\\": "src/"
}
},
"scripts": {
"post-install-cmd": [
"php ./vendor/codedungeon/phpunit-result-printer/src/init.php"
],
"coverage-report": "open ./coverage/index.html",
"test": "vendor/bin/phpunit --colors=always --testsuite Unit",
"test-unit": "vendor/bin/phpunit --colors=always --testsuite=Unit",
"test-feature": "vendor/bin/phpunit --colors=always --testsuite=Feature",
"test-coverage": [
"./vendor/bin/phpunit --colors=always --testsuite Unit --coverage-html coverage",
"open ./coverage/index.html"
],
"test-ci": "vendor/bin/phpunit -c phpunit.ci.xml",
"test-watch": "vendor/bin/phpunit-watcher watch --testsuite Unit < /dev/tty",
"watch-tickets": "vendor/bin/phpunit-watcher watch --testsuite Tickets < /dev/tty"
}
}