-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (67 loc) · 1.79 KB
/
composer.json
File metadata and controls
76 lines (67 loc) · 1.79 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
{
"name": "ixnode/bash-version-manager",
"description": "Bash Version Manager",
"version": "0.1.10",
"type": "library",
"license": "MIT",
"keywords": ["version", "manager", "semantic", "versioning", "semver"],
"authors": [
{
"name": "Björn Hempel",
"email": "bjoern@hempel.li",
"homepage": "https://www.hempel.li/"
}
],
"autoload": {
"psr-4": {
"Ixnode\\BashVersionManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ixnode\\BashVersionManager\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"ixnode/php-exception": "^0.1.21",
"ixnode/php-container": "^1.0.0",
"ixnode/php-checker": "^0.1.9"
},
"bin": [
"bin/version-manager"
],
"scripts": {
"ixno:header": "bin/header/ixno",
"vm": "bin/header/vm 'bin/version-manager --test' 'All'",
"phpunit": "bin/header/phpunit 'phpunit -d memory_limit=512M --configuration phpunit.xml' 'Unit'",
".test:all": [
"@ixno:header",
"@vm",
"@phpunit"
],
"test:all": [
"composer .test:all && bin/header/success || bin/header/error"
],
"test": [
"@test:all"
],
"php-version": "php --version",
"bash-version": "bash --version"
},
"scripts-descriptions": {
".test:all": "Not used (Hidden command).",
".test:basic": "Not used (Hidden command).",
".test:hardcore": "Not used (Hidden command).",
".test:most": "Not used (Hidden command).",
"ixno:header": "Shows ixno test header.",
"vm": "Runs version manager test.",
"phpunit": "Runs PHPUnit unit tests (all tests).",
"test": "Runs all available tests (vm, phpunit, etc.).",
"php-version": "Shows the PHP version.",
"bash-version": "Shows the Bash version."
},
"require-dev": {
"phpunit/phpunit": "^9"
}
}