-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·31 lines (29 loc) · 922 Bytes
/
composer.json
File metadata and controls
executable file
·31 lines (29 loc) · 922 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
{
"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/di": "0.1.*",
"utopia-php/servers": "0.1.*"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^1.10",
"laravel/pint": "1.2.*",
"swoole/ide-helper": "4.8.8"
},
"minimum-stability": "dev"
}