forked from JBZoo/Utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (61 loc) · 2.05 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
{
"name" : "jbzoo/utils",
"type" : "library",
"description" : "A collection of useful PHP functions, mini classes and snippets that you need every day.",
"license" : "MIT",
"minimum-stability" : "stable",
"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"
],
"authors" : [
{
"name" : "SmetDenis",
"email" : "denis@jbzoo.com",
"role" : "lead"
},
{
"name" : "Brandon Wamboldt",
"email" : "brandon.wamboldt@gmail.com"
},
{
"name" : "Luís Nóbrega",
"email" : "luis.barros.nobrega@gmail.com"
}
],
"require" : {
"php" : ">=7.1",
"ext-posix" : "*",
"ext-mbstring" : "*",
"ext-gd" : "*"
},
"require-dev" : {
"jbzoo/phpunit" : "^2.3|^3.0",
"jbzoo/profiler" : "^1.0.5",
"jbzoo/data" : "^3.0.0",
"symfony/process" : "^4.4",
"symfony/polyfill-mbstring" : "^1.12",
"php-coveralls/php-coveralls" : "^2.2.0"
},
"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" : "^2.0|^3.0"
},
"autoload" : {
"files" : [
"src/defines.php"
],
"psr-4" : {
"JBZoo\\Utils\\" : "src"
}
},
"config" : {
"optimize-autoloader" : true
},
"support" : {
"issues" : "https://github.com/JBZoo/Utils/issues"
}
}