-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
44 lines (44 loc) · 1.21 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
{
"name": "str/str",
"description": "A fast modern string manipulation library with multibyte support. Based on Stringy, with focus on speed.",
"homepage": "https://github.com/fe3dback/str",
"license": "MIT",
"authors": [
{
"name": "fe3dback",
"email": "[email protected]"
},
{
"name": "irhen",
"email": "[email protected]"
},
{
"name": "Daniel St. Jules",
"email": "[email protected]",
"homepage": "http://www.danielstjules.com"
}
],
"require": {
"php": ">=7.2.0",
"ext-mbstring": "*",
"ext-json": "*"
},
"support": {
"issues": "https://github.com/fe3dback/str/issues",
"source": "https://github.com/fe3dback/str"
},
"autoload": {
"psr-4": {
"Str\\": "src/"
}
},
"minimum-stability": "stable",
"require-dev": {
"phpbench/phpbench": "dev-master",
"phpunit/phpunit": "^8.5",
"danielstjules/stringy": "3.1",
"php-coveralls/php-coveralls": "^2.4",
"ramsey/uuid": "^4.1",
"phpdocumentor/reflection-docblock": "^5.2"
}
}