-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.7 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.7 KB
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
{
"name": "guyliangilsing/php-validation",
"description": "A simple validation library that allows you to write custom validators for your data.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Guylian Gilsing",
"email": "gilsingguylian@gmail.com"
}
],
"autoload": {
"psr-4": {
"PHPValidation\\": "./src",
"PHPValidation\\Builders\\": "./src/Builders",
"PHPValidation\\Fields\\": "./src/Fields",
"PHPValidation\\Helpers\\": "./src/Helpers",
"PHPValidation\\Strategies\\": "./src/Strategies"
},
"files": [
"./src/Functions/fields.php"
]
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"nunomaduro/phpinsights": "^2.2",
"phpunit/phpunit": "9.5",
"dg/bypass-finals": "^1.4"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"tests:unit": "./vendor/bin/phpunit --configuration phpunit.xml --testsuite unit",
"tests:unit-debug": "./vendor/bin/phpunit --configuration phpunit.xml --testsuite unit --debug",
"tests:integration": "./vendor/bin/phpunit --configuration phpunit.xml --testsuite integration",
"tests:integration-debug": "./vendor/bin/phpunit --configuration phpunit.xml --testsuite integration --debug",
"code:win-insights-cli": "./vendor/bin/phpinsights.bat analyse -v",
"code:lin-insights-cli": "./vendor/bin/phpinsights analyse -v",
"code:win-insights-json": "./vendor/bin/phpinsights.bat analyse -v --format=json > phpinsights.json"
}
}