-
-
Notifications
You must be signed in to change notification settings - Fork 466
/
composer.json
89 lines (89 loc) · 2.58 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
79
80
81
82
83
84
85
86
87
88
89
{
"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": "team@zephir-lang.com",
"homepage": "https://zephir-lang.com"
},
{
"name": "Contributors",
"homepage": "https://github.com/zephir-lang/zephir/graphs/contributors"
}
],
"require": {
"php": ">=8.0",
"ext-ctype": "*",
"ext-hash": "*",
"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.*",
"squizlabs/php_codesniffer": "^3.7"
},
"config": {
"optimize-autoloader": true,
"platform": {},
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Zephir\\": "src/"
}
},
"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"
},
"scripts": {
"cs": "./vendor/bin/phpcs --standard=phpcs.xml.dist",
"cs-fix": "./vendor/bin/phpcbf --standard=phpcs.xml.dist",
"test": "./vendor/bin/phpunit --testsuite Zephir",
"test-coverage": "./vendor/bin/phpunit --testsuite Zephir --coverage-php ./tests/output/coverage/coverage.xml",
"test-coverage-html": "./vendor/bin/phpunit --testsuite Zephir --coverage-html ./tests/output/coverage"
},
"scripts-descriptions": {
"cs": "Run PHPCS",
"cs-fix": "Run PHPCBF",
"test": "Run all tests",
"test-coverage": "Run all tests with coverage (clover)",
"test-coverage-html": "Run all tests with coverage (HTML)"
}
}