-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.5 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
{
"name": "erlandmuchasaj/sanitize",
"type": "library",
"description": "A package to sanitize your input.",
"minimum-stability": "dev",
"prefer-stable": true,
"homepage": "https://github.com/erlandmuchasaj/sanitize",
"license": "MIT",
"keywords": [
"input",
"clean",
"sanitize",
"escape",
"library",
"package"
],
"autoload": {
"psr-4": {
"ErlandMuchasaj\\Sanitize\\": "src/"
}
},
"authors": [
{
"name": "Erland Muchasaj",
"email": "[email protected]",
"homepage": "https://erlandmuchasaj.tech/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/erlandmuchasaj/sanitize/issues",
"source": "https://github.com/erlandmuchasaj/sanitize",
"email": "[email protected]",
"irc": "irc://irc.freenode.org/composer"
},
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/erlandmuchasaj"
},
{
"type": "Ko-fi",
"url": "https://ko-fi.com/erlandmuchasaj"
},
{
"type": "PayPal",
"url": "https://paypal.me/emcms?country.x=AL&locale.x=en_US"
}
],
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
},
"require": {
"php": "^7.3|^7.4|^8.0|^8.1|^8.2"
}
}