-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
53 lines (53 loc) · 1.03 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
{
"name": "protoqol/quo-php",
"version": "0.3.2",
"description": "PHP - Quo package.",
"license": "MIT",
"authors": [
{
"name": "Quinten Justus",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1|>8.0",
"ext-json": "*",
"ext-iconv": "*",
"ext-curl": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": ">7.5|>9"
},
"provide": {
"ext-mbstring": "*"
},
"suggest": {
"ext-mbstring": "For the best VarDumper performance."
},
"bin": [
"bin/quo"
],
"autoload": {
"files": [
"src/functions/quo.php",
"src/Polyfill/polyfill.php",
"src/Polyfill/Mbstring/bootstrap.php"
],
"psr-4": {
"Protoqol\\Quo\\": "src/"
}
},
"extra": {
"thanks": {
"name": "symfony/var-dumper",
"url": "https://github.com/symfony/var-dumper"
}
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=TJS5BKNE3JGW8"
}
]
}