-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 827 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 827 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
30
31
32
33
34
35
{
"name": "redrat/assert-true",
"description": "A lot of ways to you set your assert as true",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Joubert RedRat",
"email": "me+github@redrat.com.br"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"RedRat\\AssertTrue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"scripts": {
"test": "vendor/phpunit/phpunit/phpunit --no-coverage $@",
"tests": "vendor/phpunit/phpunit/phpunit -c phpunit.xml.dist --no-coverage",
"coverage": "vendor/phpunit/phpunit/phpunit -c phpunit.xml.dist",
"coverage-browser": "xdg-open tests/_reports/coverage/index.html"
}
}