-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 902 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 902 Bytes
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
{
"name": "tyrellsys/cakephp3-messages-validator",
"description": "CakePHP3 Validator that set the validation message",
"type": "cakephp3-plugin",
"require": {
"php": ">=5.6.0",
"cakephp/cakephp": ">=3.6.0,<4.0.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^3.0",
"phpunit/phpunit": "^4.8|^5.7|^6.0"
},
"autoload": {
"psr-4": {
"Tyrellsys\\CakePHP3MessagesValidator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "vendor/cakephp/cakephp/tests",
"Tyrellsys\\CakePHP3MessagesValidator\\Test\\": "tests"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"test": "phpunit",
"cs-check": "phpcs --colors -p src/ tests/",
"cs-fix": "phpcs --colors -p src/ tests/"
}
}