-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 913 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
{
"name": "jrbarnard/-----",
"description": "-----",
"license": "MIT",
"keywords": ["----", "----"],
"homepage": "https://github.com/jrbarnard/-----",
"authors": [
{
"name": "James Barnard",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"phpdocumentor/phpdocumentor": "^2.8",
"squizlabs/php_codesniffer": "2.*"
},
"autoload": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"JRBarnard\\-----\\": "src/"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test:cov": "phpunit --coverage-html ./tests/report",
"test:style": "./vendor/bin/phpcs --standard=PSR2 src",
"docs": "./vendor/bin/phpdoc -d ./src -t ./docs"
}
}