forked from fezfez/php-to-zephir
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.08 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
{
"name": "fezfez/php-to-zephir",
"description": "Transform php code to zephir",
"type": "library",
"authors": [
{
"name": "Stéphane Demonchaux",
"email": "demonchaux.stephane@gmail.com"
},
{
"name": "Frank Rakow",
"email": "frank.rakow@gmail.com"
}
],
"keywords": [
"convert php",
"zephir",
"php to zephir",
"code conversion"
],
"homepage": "https://github.com/fezfez/php-to-zephir",
"require": {
"nikic/PHP-Parser": "4.3.*",
"phpdocumentor/reflection-docblock": "4.3.*",
"phalcon/zephir": "0.12.*",
"symfony/console": "3.4.*"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
},
"autoload": {
"psr-0": {
"PhpToZephir": "src/"
}
},
"support": {
"source": "https://github.com/fezfez/php-to-zephir",
"email": "demonchaux.stephane@gmail.com",
"issues": "https://github.com/fezfez/php-to-zephir/issues",
"wiki": "https://github.com/fezfez/php-to-zephir/blob/master/README.md"
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/php-to-zephir"
]
}