forked from zephir-lang/zephir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.1 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
{
"name": "phalcon/zephir",
"description": "Zephir is a compiled high level language aimed to the creation of C-extensions for PHP",
"keywords": ["extension"],
"homepage": "http://zephir-lang.com/",
"license": "MIT",
"authors": [
{
"name": "Zephir Team",
"homepage": "http://zephir-lang.com/"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/zephir/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/phalcon/zephir/issues?state=open"
},
"require": {
"php": "~5.3",
"ext-json": "*"
},
"require-dev": {
"satooshi/php-coveralls": "0.6.1",
"squizlabs/php_codesniffer": "1.5.2",
"ext-gmp": "*"
},
"autoload": {
"psr-4": {
"Zephir\\": "Library"
}
},
"bin": ["bin/zephir"],
"scripts": {
"post-install-cmd": ["./install"],
"post-update-cmd": ["./install"]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}