forked from danielstjules/Stringy
-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
60 lines (60 loc) · 1.51 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
{
"name": "voku/stringy",
"description": "A string manipulation library with multibyte support",
"keywords": [
"helpers",
"manipulation",
"methods",
"multibyte",
"string",
"utf",
"utf-8",
"utility",
"utils"
],
"homepage": "https://github.com/danielstjules/Stringy",
"license": "MIT",
"authors": [
{
"name": "Daniel St. Jules",
"email": "[email protected]",
"homepage": "http://www.danielstjules.com",
"role": "Maintainer"
},
{
"name": "Lars Moelleken",
"email": "[email protected]",
"homepage": "https://www.moelleken.org/",
"role": "Fork-Maintainer"
}
],
"support": {
"issues": "https://github.com/voku/Stringy/issues",
"source": "https://github.com/voku/Stringy"
},
"require": {
"php": ">=7.0.0",
"ext-json": "*",
"defuse/php-encryption": "~2.0",
"voku/arrayy": "~7.8",
"voku/urlify": "~5.0",
"voku/anti-xss": "~4.1",
"voku/email-check": "~3.1",
"voku/portable-ascii": "~2.0",
"voku/portable-utf8": "~6.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
},
"replace": {
"danielstjules/stringy": "~3.0"
},
"autoload": {
"psr-4": {
"Stringy\\": "src/"
},
"files": [
"src/Create.php"
]
}
}