-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 614 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 614 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
{
"name": "wizardloop/wizardcli",
"description": "🧙♂️ WizardCLI – Magical PHP CLI styling: Colors, Tables, Progress bars & ASCII Art for beautiful terminal UX.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "WizardLoop",
"email": "contact@wizardloop.com"
}
],
"autoload": {
"psr-4": {
"WizardCLI\\": "src/"
}
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^10"
},
"scripts": {
"test": "phpunit --colors=always"
}
}