forked from karriereat/json-decoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 852 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
{
"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": "Johannes Pichler",
"email": "[email protected]",
"role": "Maintainer"
}
],
"autoload": {
"psr-4": {
"Karriere\\JsonDecoder\\": "src/"
}
},
"require": {
"php": ">=7.0"
},
"require-dev": {
"karriere/code-quality": "^3.0",
"sebastian/comparator": "^1.1",
"sebastian/exporter": "^2.0",
"sebastian/recursion-context": "^2.0"
},
"scripts": {
"test": "vendor/bin/phpspec run",
"lint": "vendor/bin/phpcs src/ --standard=PSR2"
}
}