forked from karriereat/json-decoder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1019 Bytes
/
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
{
"name": "umotif/json-decoder",
"description": "JsonDecoder implementation that allows you to convert your JSON data into PHP class objects",
"keywords": [
"json",
"decoder"
],
"license": "Apache-2.0",
"authors": [
{
"name": "Johannes Pichler",
"email": "johannes.pichler@uMotif.at",
"role": "Maintainer"
}
],
"autoload": {
"psr-4": {
"uMotif\\JsonDecoder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"uMotif\\JsonDecoder\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.3",
"php-di/phpdoc-reader": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"friendsofphp/php-cs-fixer": "^2.16"
},
"scripts": {
"test": "phpunit",
"coverage": "phpunit --coverage-clover coverage.xml",
"lint": "php-cs-fixer fix -v --dry-run",
"fix": "php-cs-fixer fix -v"
}
}