-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
29 lines (29 loc) · 860 Bytes
/
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
{
"name": "jakub-onderka/php-console-highlighter",
"description": "Highlight PHP code in terminal",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jakub Onderka",
"email": "[email protected]",
"homepage": "http://www.acci.cz/"
}
],
"autoload": {
"psr-4": {"JakubOnderka\\PhpConsoleHighlighter\\": "src/"}
},
"require": {
"php": ">=5.4.0",
"ext-tokenizer": "*",
"jakub-onderka/php-console-color": "~0.2"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"jakub-onderka/php-parallel-lint": "~1.0",
"jakub-onderka/php-var-dump-check": "~0.1",
"squizlabs/php_codesniffer": "~1.5",
"jakub-onderka/php-code-style": "~1.0"
},
"abandoned": "php-parallel-lint/php-console-highlighter"
}