-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.17 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
{
"name": "texdc/guard",
"description": "assertion library with reusable guard function",
"type": "library",
"require": {
"beberlei/assert": "@stable",
"php": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"satooshi/php-coveralls": "@stable",
"squizlabs/php_codesniffer": "@stable",
"phpmd/phpmd": "@stable",
"phpmetrics/phpmetrics": "@stable"
},
"license": "MIT",
"autoload": {
"psr-4": { "texdc\\guard\\": "src/" },
"files": [ "src/functions.php" ]
},
"autoload-dev": {
"psr-4": { "texdc\\guard\\test\\": "test/" }
},
"config": {
"platform": { "php": "7.1" },
"preferred-install": "dist"
},
"scripts": {
"test": "vendor/bin/phpunit",
"style": "vendor/bin/phpcs --standard=PSR2 src/ test/",
"check": "vendor/bin/phpmd src/,test/ text cleancode,codesize,design,naming,unusedcode",
"metrics": "vendor/bin/phpmetrics --report-cli src/"
},
"authors": [
{ "name": "George Cooksey", "email": "texdc3@gmail.com" }
],
"minimum-stability": "stable"
}