-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 1.96 KB
/
Copy pathcomposer.json
File metadata and controls
81 lines (81 loc) · 1.96 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "sugarcraft/candy-core",
"description": "PHP port of charmbracelet/bubbletea \u2014 Elm-architecture TUI runtime.",
"type": "library",
"license": "MIT",
"keywords": [
"tui",
"terminal",
"cli",
"console",
"bubbletea",
"bubble-tea",
"elm",
"elm-architecture",
"ansi",
"react-php",
"sugarcraft"
],
"homepage": "https://github.com/sugarcraft/candy-core",
"authors": [
{
"name": "Joe Huss",
"email": "detain@interserver.net",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/sugarcraft/candy-core/issues",
"source": "https://github.com/sugarcraft/candy-core",
"docs": "https://sugarcraft.github.io/lib/candy-core.html"
},
"require": {
"php": "^8.3",
"react/event-loop": "^1.6",
"react/promise": "^3.3",
"sugarcraft/candy-pty": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0"
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse src --no-progress"
},
"autoload": {
"psr-4": {
"SugarCraft\\Core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SugarCraft\\Core\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "path",
"url": "../candy-pty",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "../candy-ansi",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "../candy-input",
"options": {
"symlink": true
}
}
]
}