-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
70 lines (70 loc) · 1.37 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
{
"name": "sandrokeil/php-to-zephir",
"description": "Convert PHP 7 files to Zephir zep files",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"php",
"extension",
"converter",
"zephir",
"zep"
],
"authors": [
{
"name": "Sandro Keil",
"homepage": "https://sandro-keil.de",
"role": "maintainer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"require": {
"php": "^7.1",
"nikic/php-parser": "^4.1",
"symfony/console": "^2.7 || ^3.0 || ^4.0"
},
"require-dev": {
"malukenho/docheader": "^0.1.7",
"phpunit/phpunit": "^7.4",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^2.9.1"
},
"autoload": {
"psr-4": {
"PhpToZephir\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpToZephirTest\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@docheader",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"docheader": "docheader check src/ test/"
},
"bin": [
"bin/php2zephir"
],
"archive": {
"exclude": [
".coveralls.yml",
".travis.yml",
"build",
"phpunit.xml*",
"test"
]
}
}