-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 970 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 970 Bytes
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
{
"name": "symfony/tui",
"type": "library",
"description": "Provides a terminal UI framework for building rich, interactive CLI applications in PHP",
"keywords": ["tui", "terminal", "console", "cli"],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
"php": ">=8.4.1",
"revolt/event-loop": "^1.0",
"symfony/event-dispatcher": "^8.0",
"symfony/string": "^8.0"
},
"require-dev": {
"league/commonmark": "^2.9",
"tempest/highlight": "^2.16"
},
"autoload": {
"psr-4": { "Symfony\\Component\\Tui\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev"
}