-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.12 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
{
"name": "zephir-lang/langspec",
"description": "Zephir Language Specifications",
"keywords": [
"zephir",
"language-specification"
],
"homepage": "https://zephir-lang.com",
"license": "MIT AND CC0-1.0",
"authors": [
{
"name": "Zephir Team",
"email": "[email protected]",
"homepage": "https://zephir-lang.com"
},
{
"name": "Contributors",
"homepage": "https://github.com/zephir-lang/zephir-langspec/graphs/contributors"
}
],
"require": {
"php": "^7.2"
},
"config": {
"optimize-autoloader": true,
"platform": {},
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Zephir\\": "src/Zephir/"
},
"files": [
"src/Zephir/Grammar/functions.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"grammar"
],
"support": {
"issues": "https://github.com/zephir-lang/zephir-langspec/issues?state=open",
"forum": "https://forum.zephir-lang.com",
"source": "https://github.com/zephir-lang/zephir-langspec",
"docs": "https://docs.zephir-lang.com"
}
}