-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 954 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 954 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
34
35
36
37
38
39
40
{
"name": "codelicia/xulieta-json",
"description": "Xulieta Plugin for JSON validation",
"license": "MIT",
"require": {
"php": "^8.1 || ^8.2"
},
"require-dev": {
"codelicia/xulieta": "^1.0.0",
"doctrine/coding-standard": "^12.0.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Codelicia\\XulietaJson\\": "src/"
}
},
"config": {
"allow-plugins": {
"codelicia/xulieta": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"xulieta": {
"validator": [
"Codelicia\\XulietaJson\\JsonValidator"
]
}
},
"scripts": {
"phpcbf": "vendor/bin/phpcbf",
"phpcs": "vendor/bin/phpcs",
"phpunit": "vendor/bin/phpunit",
"test": [
"@phpcs",
"@phpunit"
]
}
}