-
-
Notifications
You must be signed in to change notification settings - Fork 468
/
Copy pathcomposer.json
78 lines (78 loc) · 1.99 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
73
74
75
76
77
78
{
"name": "phalcon/zephir",
"description": "Zephir is a compiled high level language aimed to the creation of C-extensions for PHP",
"keywords": [
"extension",
"zephir",
"phalcon",
"internals"
],
"homepage": "https://zephir-lang.com",
"license": "MIT",
"authors": [
{
"name": "Phalcon Team",
"email": "[email protected]",
"homepage": "https://zephir-lang.com"
},
{
"name": "Contributors",
"homepage": "https://github.com/zephir-lang/zephir/graphs/contributors"
}
],
"require": {
"php": ">=7.4.1",
"ext-ctype": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pcre": "*",
"ext-xml": "*",
"ext-zlib": "*",
"monolog/monolog": "^2.3",
"symfony/console": "^5.2",
"symfony/event-dispatcher": "^5.3"
},
"require-dev": {
"ext-gmp": "*",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"ext-zip": "*",
"phpunit/phpunit": "9.5.28",
"psr/log": "1.1.*"
},
"config": {
"optimize-autoloader": true,
"platform": {},
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Zephir\\": "Library"
},
"files": [
"Library/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Zephir\\Test\\": "tests/Zephir/",
"Extension\\": "tests/Extension/"
},
"classmap": [
"tests/fixtures/mocks/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"zephir"
],
"support": {
"issues": "https://github.com/zephir-lang/zephir/issues?state=open",
"source": "https://github.com/zephir-lang/zephir",
"irc": "irc://irc.freenode.net/zephir",
"docs": "https://docs.zephir-lang.com"
}
}