-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·57 lines (57 loc) · 1.57 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
53
54
55
56
57
{
"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,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^8.0"
},
"require-dev": {
"nunomaduro/phpinsights": "^2.4",
"phpmetrics/phpmetrics": "^2.8",
"phpstan/phpstan": "^0.12.93",
"phpunit/phpunit": "^9",
"roave/security-advisories": "dev-master",
"vimeo/psalm": "^4.24"
},
"scripts": {
"phpcs": "phpcs -s src",
"phpinsights": "phpinsights analyse src -v",
"phpstan": "phpstan analyse src --level 7",
"psalm": "psalm",
"test": "phpunit --colors=always tests",
"test:filter": "phpunit --filter",
"test-coverage": "phpunit --coverage-html log/report"
},
"scripts-descriptions": {
"test": "Run all tests!",
"test:filter": "Run tests with filtering.",
"test-coverage": "Run code coverage"
}
}