-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 867 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 867 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": "jobcloud/avro-validator",
"license": "MIT",
"require": {
"php": "^8.4",
"ext-json": "*",
"symfony/console": "^7.4 | ^8.0"
},
"require-dev": {
"ergebnis/phpstan-rules": "^2.13",
"friends-of-phpspec/phpspec-code-coverage": "dev-master@dev",
"phpspec/phpspec": "^8.2",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"rregeer/phpunit-coverage-check": "^0.3",
"squizlabs/php_codesniffer": "^4.0",
"infection/infection": "^0.29",
"infection/phpspec-adapter": "^0.2"
},
"autoload": {
"psr-4": {
"Jobcloud\\Avro\\Validator\\": "src/"
}
},
"bin": ["bin/avro-validator"],
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"infection/extension-installer": true
}
}
}