-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 928 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
{
"name": "midhundevasia/json-ast",
"type": "library",
"version" : "0.0.2",
"description": "JSON to AST parser in PHP",
"homepage": "https://github.com/midhundevasia/json-ast",
"license": ["GPL-3.0+"],
"authors": [
{
"name": "Midhun Devasia",
"email": "[email protected]",
"homepage": "http://midhundev.asia"
}
],
"keywords": [
"json", "json-ast", "ast parser", "json ast", "json parser"
],
"support": {
"issues": "https://github.com/midhundevasia/json-ast/issues"
},
"require": {
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "^3.0@dev",
"friendsofphp/php-cs-fixer": "^2.19@dev"
},
"autoload": {
"psr-4": { "JsonAst\\": "src/" },
"exclude-from-classmap": [
"/tests/"
]
}
}