-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·68 lines (68 loc) · 1.71 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
{
"name": "src-run/vermicious-console-io-library",
"license": "MIT",
"type": "library",
"homepage": "https://src.run/vermicious-console-io-library",
"description": "Enhanced console input/output style implementation with a complete object-oriented API.",
"support": {
"email": "[email protected]",
"issues": "https://src.run/vermicious-console-io-library/issues",
"source": "https://src.run/vermicious-console-io-library/git"
},
"keywords": [
"vermicious-console-io-library",
"vermicious",
"console",
"io",
"library",
"rmf",
"src-run"
],
"authors": [
{
"name": "Rob Frawley 2nd",
"email": "[email protected]",
"homepage": "https://src.run/rmf",
"role": "Project Lead"
}
],
"require" : {
"php": "^8.1",
"src-run/cocoa-var-dumper-library": "^0.20.0",
"src-run/augustus-exception-library": "^0.20.0",
"src-run/augustus-reflection-library": "^0.20.0",
"symfony/console": "^5.3 | ^6.0"
},
"require-dev": {
"codacy/coverage": "~1.4",
"friendsofphp/php-cs-fixer": "~3.2",
"php-coveralls/php-coveralls": "~2.4",
"symfony/error-handler": "^5.3 | ^6.0",
"phpunit/phpunit": "^9.2",
"symfony/phpunit-bridge": "^5.3 | ^6.0",
"symfony/var-dumper": "^5.3 | ^6.0",
"symfony/yaml": "^5.3 | ^6.0"
},
"autoload": {
"psr-4": {
"SR\\Console\\Input\\": "lib/Input/",
"SR\\Console\\Output\\": "lib/Output/"
}
},
"autoload-dev": {
"psr-4": {
"SR\\Console\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.20-dev"
}
}
}