-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 1.02 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
{
"name": "net_bazzline/php_component_cli_environment",
"description": "free as in freedom command line environment for php creating lean command line executable files",
"keywords": [
"bazzline",
"php",
"component",
"free as in freedom",
"lgpl",
"lean",
"command line",
"cli",
"console",
"environment"
],
"type": "library",
"bin": [
"bin/net_bazzline_create_executable_command_line_file"
],
"require": {
"net_bazzline/php_component_cli_arguments": "2.1.*",
"net_bazzline/php_component_toolbox": ">=1.10",
"php": ">=8.0"
},
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Stev Leibelt",
"email": "artodeto@bazzline.net",
"homepage": "https://artodeto.bazzline.net",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Net\\Bazzline\\Component\\Cli\\Environment\\": "source/"
}
}
}