-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
56 lines (56 loc) · 1.48 KB
/
composer.json
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
{
"name": "aura/cli",
"type": "library",
"description": "Provides the equivalent of request (Context) and response (Stdio) classes for a command line environment, including Getopt support.",
"keywords": [
"command",
"command line",
"cli",
"getopt",
"options",
"stdio"
],
"homepage": "https://github.com/auraphp/Aura.Cli",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Aura.Cli Contributors",
"homepage": "https://github.com/auraphp/Aura.Cli/contributors"
}
],
"require": {
"php": ">=7.2.0"
},
"autoload": {
"psr-4": {
"Aura\\Cli\\": "src/",
"Aura\\Cli\\_Config\\": "config/"
}
},
"extra": {
"aura": {
"type": "library",
"config": {
"common": "Aura\\Cli\\_Config\\Common"
}
}
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"aura/di": "~4.0"
},
"autoload-dev": {
"psr-4": {
"Aura\\Cli\\": "tests/",
"Aura\\Di\\": "vendor/aura/di/tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"coverage": "php -dzend_extension=xdebug.so -dxdebug.mode=coverage ./vendor/bin/phpunit --coverage-text --coverage-html=build/coverage"
},
"scripts-descriptions": {
"test": "Run unit tests",
"coverage": "Generate test coverage report"
}
}