-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 743 Bytes
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 743 Bytes
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
{
"name": "zane/utils",
"type": "library",
"keywords": [
"array",
"string",
"validator",
"utils"
],
"description": "A collection of useful classes like Ary, Str and Validator",
"require": {
"php": "7.*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-ctype": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.5"
},
"license": "MIT",
"authors": [
{
"name": "zane",
"email": "pi@0php.net",
"homepage": "https://www.0php.net"
}
],
"autoload": {
"psr-4": {
"Zane\\Utils\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}