-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.48 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
{
"name": "phly/phly-rule-validation",
"description": "Simple rule-based validation framework",
"type": "library",
"license": "BSD-2-Clause",
"keywords": [
"validation"
],
"support": {
"issues": "https://github.com/phly/phly-rule-validation/issues",
"source": "https://github.com/phly/phly-rule-validation",
"rss": "https://github.com/phly/phly-rule-validation/releases.atom"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true
}
},
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.5.0",
"phpunit/phpunit": "^10.1",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.7.7",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Phly\\RuleValidation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhlyTest\\RuleValidation\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}