forked from whatthejeff/nyancat-phpunit-resultprinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 955 Bytes
/
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
{
"name": "codelicia/nyancat",
"description": "Nyan Cat result printer for PHPUnit",
"keywords": ["nyan","cat","rainbow","phpunit","tests"],
"homepage": "http://github.com/codelicia/nyancat",
"license": "MIT",
"authors": [
{
"name": "Jeff Welch",
"email": "whatthejeff@gmail.com",
"homepage": "http://whatthejeff.com"
},
{
"name": "Jefersson Nathan",
"email": "malukenho.dev@gmail.com",
"homepage": "http://malukenho.dev"
}
],
"support": {
"issues": "https://github.com/codelicia/nyancat/issues"
},
"require": {
"php": "^7.4",
"whatthejeff/nyancat-scoreboard": "~1.1"
},
"require-dev": {
"phpunit/phpunit": "^9.0.0"
},
"autoload": {
"psr-4": {
"Codelicia\\NyanCat\\": "src/"
}
},
"scripts": {
"test": "phpunit"
}
}