-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.04 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
{
"name": "net_bazzline/php_component_toolbox",
"description": "free as in freedom free software collection of tools to easy and speed up development with php",
"keywords": [
"bazzline",
"psr",
"psr-4",
"php",
"component",
"toolbox",
"tools",
"utilities",
"array",
"invoke",
"reusable","free as in freedom"
],
"type": "library",
"minimum-stability": "dev",
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "~9.0"
},
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Stev Leibelt",
"email": "[email protected]",
"homepage": "https://artodeto.bazzline.net",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Net\\Bazzline\\Component\\Toolbox\\": "source/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Net\\Bazzline\\Component\\Toolbox\\": "test/"
}
}
}