-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.51 KB
/
Copy pathcomposer.json
File metadata and controls
81 lines (81 loc) · 2.51 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "php-db/phpdb-validator",
"description": "phpdb validators for laminas-validator.",
"license": "BSD-3-Clause",
"keywords": [
"phpdb",
"validator",
"db"
],
"homepage": "https://github.com/php-db/phpdb-validator",
"support": {
"issues": "https://github.com/php-db/phpdb-validator/issues",
"source": "https://github.com/php-db/phpdb-validator",
"forum": "https://github.com/php-db/phpdb-validator/discussions"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"platform": {
"php": "8.2.99"
},
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"extra": {
"laminas": {
"component": "PhpDb\\Validator",
"config-provider": "PhpDb\\Validator\\ConfigProvider"
}
},
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"php-db/phpdb": "^0.6.0",
"laminas/laminas-servicemanager": "^3.12 || ^4.1",
"laminas/laminas-validator": "^2.28 || ^3.0",
"laminas/laminas-translator": "^1.0",
"psr/container": "^1.1 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^11.5.0"
},
"suggest": {
"laminas/laminas-i18n": "Laminas\\I18n component to allow translation of validation error messages",
"laminas/laminas-i18n-resources": "Translations of validator messages",
"laminas/laminas-servicemanager": "Laminas\\ServiceManager component"
},
"autoload": {
"psr-4": {
"PhpDb\\Validator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpDbTest\\Validator\\Unit\\": "test/unit/",
"PhpDbTest\\Validator\\Integration\\": "test/integration/",
"PhpDbTestAsset\\Validator\\": "test/asset/"
}
},
"scripts": {
"check": [
"@cs-check",
"@static-analysis",
"@test"
],
"cs-check": [
"mago format --check",
"mago lint"
],
"cs-fix": [
"mago format",
"mago lint --fix"
],
"test": "phpunit --colors=always --testsuite \"unit test\"",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"test-integration": "phpunit --colors=always --testsuite \"integration test\"",
"static-analysis": "mago analyze",
"upload-coverage": "coveralls -v"
}
}