-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.47 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
{
"name": "creativecow/cc-component-consoleoutput",
"description": "Symfony console output as HTML using SensioLabs AnsiConverter",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"ansi",
"html",
"symfony-console",
"console-to-browser"
],
"homepage": "https://github.com/hownowcreativecow/cc-component-consoleoutput",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"classmap-authoritative": true,
"discard-changes": true,
"optimize-autoloader": true,
"prepend-autoloader": true,
"process-timeout": 5000,
"sort-packages": true
},
"require": {
"php": "^7.1.0",
"creativecow/cc-component-outputstream": "^1.0.1",
"sensiolabs/ansi-to-html": "^1.1.3",
"symfony/console": "^4.1.3",
"zendframework/zend-config-aggregator": "^1.1.1",
"zendframework/zend-servicemanager": "^3.3.2"
},
"require-dev": {
"ise/php-metapackage-development": "^2.0.3"
},
"autoload": {
"psr-4": {
"Cc\\ConsoleOutput\\": "src/"
}
},
"scripts": {
"check": [
"@cs-check",
"@analyse"
],
"analyse": "phpstan analyze -l max src",
"cs-check": "phpcs",
"cs-fix": "phpcbf"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-develop": "1.1.x-dev"
}
}
}