-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
48 lines (48 loc) · 1.45 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
{
"name": "karriere/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": "Alexander Lentner",
"email": "[email protected]",
"role": "Maintainer"
}
],
"autoload": {
"psr-4": {
"Karriere\\JsonDecoder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Karriere\\JsonDecoder\\Tests\\": "tests/"
}
},
"require": {
"php": "8.0.* | 8.1.* | 8.2.* | 8.3.* | 8.4.*",
"php-di/phpdoc-reader": "^2.1"
},
"require-dev": {
"laravel/pint": "^1.5 | ^1.6",
"pestphp/pest": "^1.22 | ^2.0 | ^3.0",
"phpstan/phpstan": "^1.10 | ^2.0"
},
"scripts": {
"analyse": "phpstan analyse --memory-limit 512M",
"lint": "pint --test",
"lint:verbose": "pint -v --test",
"fix": "pint",
"test": "vendor/bin/pest",
"coverage": "vendor/bin/pest --coverage --ci --coverage-html coverage --coverage-clover coverage.xml --log-junit junit.xml",
"report": "vendor/bin/pest --coverage",
"report:html": "vendor/bin/pest --coverage --coverage-html coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}