This repository was archived by the owner on Nov 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.34 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.34 KB
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
{
"name": "railt/parser",
"license": "MIT",
"type": "library",
"homepage": "http://railt.org",
"description": "The GraphQL parser",
"keywords": [
"graphql",
"sdl",
"parser"
],
"authors": [
{
"name": "Kirill Nesmeyanov",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/railt/railt/issues",
"source": "https://github.com/railt/parser"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"phplrt/lexer": "~2.2",
"phplrt/parser": "~2.2"
},
"autoload": {
"psr-4": {
"Railt\\Parser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Railt\\Parser\\Tests\\": "tests/"
}
},
"require-dev": {
"twig/twig": "~2.11",
"vimeo/psalm": "~3.5",
"phpunit/phpunit": "~8.0",
"phplrt/compiler": "~2.2",
"symfony/var-dumper": "~4.0",
"zendframework/zend-code": "~3.3",
"ocramius/package-versions": "~1.5"
},
"extra": {
"branch-alias": {
"1.3.x": "1.3.x-dev",
"dev-master": "2.0.x-dev"
}
},
"config": {
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev"
}