-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.18 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
{
"name": "adhocore/cli-syntax",
"description": "PHP Code Syntax Highlighter for CLI",
"type": "library",
"keywords": ["php", "cli-syntax", "php-cli-highlight", "cli-syntax-highlight", "syntax-highlight",
"export-php-code", "code-to-image", "code-screenshot"],
"license": "MIT",
"authors": [
{
"name": "Jitendra Adhikari",
"email": "jiten.adhikary@gmail.com",
"role": "Lead Developer"
}
],
"autoload": {
"psr-4": {
"Ahc\\CliSyntax\\": "src/"
},
"files": []
},
"autoload-dev": {
"psr-4": {
"Ahc\\CliSyntax\\Test\\": "tests/"
}
},
"require": {
"php": ">=7.0.0",
"ext-dom": "*",
"ext-gd": "*",
"adhocore/cli": "^0.8.3"
},
"require-dev": {
"phpunit/phpunit": "^6.5 || ^7.5"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"bin": ["bin/clish"],
"scripts": {
"test": "phpunit",
"test:cov": "phpunit --coverage-text --coverage-clover coverage.xml --coverage-html vendor/cov"
}
}