-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·30 lines (30 loc) · 915 Bytes
/
composer.json
File metadata and controls
executable file
·30 lines (30 loc) · 915 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
{
"name": "utopia-php/cli",
"description": "A simple CLI library to manage command line applications",
"type": "library",
"keywords": ["php","framework", "upf", "utopia", "cli", "command line"],
"license": "MIT",
"scripts": {
"test": "vendor/bin/phpunit --configuration phpunit.xml < tests/input.txt",
"check": "vendor/bin/phpstan analyse -c phpstan.neon",
"lint": "vendor/bin/pint --test",
"format": "vendor/bin/pint"
},
"autoload": {
"psr-4": {
"Utopia\\CLI\\": "src/CLI"
}
},
"require": {
"php": ">=7.4",
"utopia-php/servers": "0.2.*"
},
"require-dev": {
"utopia-php/console": "0.0.*",
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^1.10",
"laravel/pint": "1.2.*",
"swoole/ide-helper": "4.8.8"
}
}