This repository has been archived by the owner on Nov 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 1.64 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "railt/json",
"license": "MIT",
"type": "library",
"homepage": "http://railt.org",
"description": "Simple library for working with json data",
"keywords": [
"json",
"parsing",
"read",
"write",
"decode",
"encode",
"json5"
],
"authors": [
{
"name": "Kirill Nesmeyanov",
"email": "nesk@xakep.ru"
}
],
"support": {
"issues": "https://github.com/railt/railt/issues",
"source": "https://github.com/railt/railt"
},
"require": {
"php": ">=7.1.3",
"ext-json": "*",
"phplrt/io": "~1.1",
"phplrt/lexer": "~1.1",
"phplrt/parser": "~1.1",
"justinrainbow/json-schema": "~5.2"
},
"autoload": {
"psr-4": {
"Railt\\": "src/"
},
"files": [
"./src/Json/polyfill.php",
"./src/Json/helpers.php"
]
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"phplrt/compiler": "~1.0"
},
"autoload-dev": {
"psr-4": {
"Railt\\Tests\\Json\\": "tests"
}
},
"suggest": {
"railt/lexer": "(1.4.*) JSON5 decoder support",
"railt/parser": "(1.4.*) JSON5 decoder support"
},
"extra": {
"railt": {
"commands": [
"Railt\\Json\\Console\\Json5CompileCommand"
]
},
"branch-alias": {
"1.3.x": "1.3.x-dev",
"1.4.x": "1.4.x-dev"
}
},
"config": {
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev"
}