-
Notifications
You must be signed in to change notification settings - Fork 75
/
composer.json
97 lines (88 loc) · 2.38 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name" : "jbzoo/utils",
"type" : "library",
"description" : "Collection of PHP functions, mini classes and snippets for everyday developer's routine life.",
"license" : "MIT",
"keywords" : [
"helpers",
"helper",
"utility",
"utils",
"collection",
"environment",
"image",
"filesystem",
"array",
"cli",
"command line",
"dates",
"email",
"env",
"filter",
"http",
"url",
"serialize",
"slugify",
"string",
"mbstring",
"timer",
"misc"
],
"minimum-stability" : "dev",
"prefer-stable" : true,
"authors" : [
{
"name" : "Denis Smetannikov",
"email" : "[email protected]",
"role" : "lead"
},
{
"name" : "Brandon Wamboldt",
"email" : "[email protected]"
},
{
"name" : "Luís Nóbrega",
"email" : "[email protected]"
}
],
"require" : {
"php" : "^8.1"
},
"require-dev" : {
"jbzoo/toolbox-dev" : "^7.1",
"jbzoo/data" : "^7.1",
"symfony/process" : ">=6.4"
},
"suggest" : {
"ext-mbstring" : "Provides multibyte specific string functions",
"symfony/process" : "For Cli::exec() method only",
"symfony/polyfill-mbstring" : "For UTF-8 if ext-mbstring disabled",
"jbzoo/data" : ">=4.0",
"ext-intl" : "*",
"ext-posix" : "*",
"ext-filter" : "*",
"ext-dom" : "*",
"ext-gd" : "*"
},
"autoload" : {
"psr-4" : {"JBZoo\\Utils\\" : "src"},
"files" : [
"src/defines.php",
"src/aliases.php"
]
},
"autoload-dev" : {
"psr-4" : {"JBZoo\\PHPUnit\\" : "tests"}
},
"config" : {
"optimize-autoloader" : true,
"allow-plugins" : {
"composer/package-versions-deprecated" : true
}
},
"extra" : {
"branch-alias" : {
"dev-master" : "7.x-dev"
}
}
}