forked from mikeerickson/phpunit-pretty-result-printer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·29 lines (29 loc) · 770 Bytes
/
composer.json
File metadata and controls
executable file
·29 lines (29 loc) · 770 Bytes
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
{
"name": "codedungeon/phpunit-result-printer",
"version": "0.4.4",
"description": "PHPUnit Pretty Result Printer",
"keywords": ["phpunit", "printer", "result-printer", "composer", "package"],
"license": "MIT",
"authors": [{
"name": "Mike Erickson",
"email": "codedungeon@gmail.com"
}],
"type": "library",
"require": {
"hassankhan/config": "^0.10.0",
"symfony/yaml": "^3.3|^4.0"
},
"require-dev": {
"phpunit/phpunit": ">=5.2",
"spatie/phpunit-watcher": "^1.3"
},
"autoload": {
"psr-4": {
"Codedungeon\\PHPUnitPrettyResultPrinter\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"watch-tickets": "vendor/bin/phpunit-watcher watch --testsuite Tickets < /dev/tty"
}
}