-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 881 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 881 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
{
"name": "jaem3l/cli-note",
"description": "Tool to build CLI based presentation slide decks",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christopher Hertel",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-mbstring": "*",
"stoffel/console-canvas": "^0.1",
"stoffel/console-sourcecode": "^0.1",
"symfony/console": "^5.2",
"symfony/process": "^5.2",
"symfony/event-dispatcher": "^5.2",
"symfony/error-handler": "^5.2",
"symfony/filesystem": "^5.2",
"symfony/dependency-injection": "^5.2",
"symfony/config": "^5.2",
"symfony/yaml": "^5.2"
},
"autoload": {
"psr-4": {
"jæm3l\\CliNote\\": "src/"
}
},
"bin": "cli-note"
}