forked from SandroMiguel/verum-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.38 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "sandromiguel/verum-php",
"description": "Server-Side Form Validation Library for PHP",
"homepage": "/~https://github.com/SandroMiguel/verum-php",
"keywords": [
"validator",
"validation",
"php",
"php-library"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sandro Miguel Marques",
"email": "sandromiguel@sandromiguel.com",
"homepage": "http://sandromiguel.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Verum\\": "src"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.2.0"
},
"require-dev": {
"nunomaduro/phpinsights": "^1.14",
"phpmetrics/phpmetrics": "^2.6",
"phpstan/phpstan": "^0.12.31",
"phpunit/phpunit": "8",
"roave/security-advisories": "dev-master",
"vimeo/psalm": "^3.12"
},
"scripts": {
"phpcs": "phpcs -s src",
"phpinsights": "phpinsights analyse src -v",
"phpstan": "phpstan analyse src --level 7",
"psalm": "psalm",
"test": "phpunit --colors=always tests",
"test-coverage": "phpunit --coverage-html log/report"
},
"scripts-descriptions": {
"test": "Run all tests!",
"test-coverage": "Run code coverage"
}
}